This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree 2 files changed +3
-8
lines changed
2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,14 @@ jobs:
13
13
runs-on : ubuntu-22.04
14
14
timeout-minutes : 20
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
- run : " ./extract.sh"
18
18
- run : cat _artifacts/SHA256SUMS
19
19
- run : (cd _artifacts; sha256sum SHA256SUMS)
20
20
- name : " Prepare the release note"
21
21
run : |
22
- tag="${GITHUB_REF##*/}"
23
22
shasha=$(sha256sum _artifacts/SHA256SUMS | awk '{print $1}')
24
23
cat <<-EOF | tee /tmp/release-note.txt
25
- ${tag}
26
-
27
24
The license (GPL-2.0) is included in the \`*.orig.tar.gz\` source archive.
28
25
29
26
- - -
38
35
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39
36
run : |
40
37
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 1
1
#! /bin/bash
2
2
set -eux -o pipefail
3
3
4
- VERSION=" 2023.04 +dfsg-1"
4
+ VERSION=" 2023.07 +dfsg-1"
5
5
CURL=" curl -O -fsSL"
6
6
7
7
mkdir _artifacts
You can’t perform that action at this time.
0 commit comments