Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 1946e71

Browse files
authored
Merge pull request #6 from AkihiroSuda/dev
2023.07+dfsg-1
2 parents e0190a6 + 4e601df commit 1946e71

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/release.yml

+2-7
Original file line numberDiff line numberDiff 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
- - -
@@ -38,6 +35,4 @@ jobs:
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/*

extract.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -eux -o pipefail
33

4-
VERSION="2023.04+dfsg-1"
4+
VERSION="2023.07+dfsg-1"
55
CURL="curl -O -fsSL"
66

77
mkdir _artifacts

0 commit comments

Comments
 (0)