This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,14 @@ jobs:
1313 runs-on : ubuntu-22.04
1414 timeout-minutes : 20
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 - run : " ./extract.sh"
1818 - run : cat _artifacts/SHA256SUMS
1919 - run : (cd _artifacts; sha256sum SHA256SUMS)
2020 - name : " Prepare the release note"
2121 run : |
22- tag="${GITHUB_REF##*/}"
2322 shasha=$(sha256sum _artifacts/SHA256SUMS | awk '{print $1}')
2423 cat <<-EOF | tee /tmp/release-note.txt
25- ${tag}
26-
2724 The license (GPL-2.0) is included in the \`*.orig.tar.gz\` source archive.
2825
2926 - - -
3835 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3936 run : |
4037 tag="${GITHUB_REF##*/}"
41- asset_flags=()
42- for f in _artifacts/*; do asset_flags+=("-a" "$f"); done
43- hub release create "${asset_flags[@]}" -F /tmp/release-note.txt --draft "${tag}"
38+ gh release create -F /tmp/release-note.txt --draft --title "${tag}" "${tag}" _artifacts/*
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -eux -o pipefail
33
4- VERSION=" 2023.04 +dfsg-1"
4+ VERSION=" 2023.07 +dfsg-1"
55CURL=" curl -O -fsSL"
66
77mkdir _artifacts
You can’t perform that action at this time.
0 commit comments