This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
Merge pull request #6 from AkihiroSuda/dev #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '20*' # e.g., 2023.01+dfsg-2 | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: "./extract.sh" | |
- run: cat _artifacts/SHA256SUMS | |
- run: (cd _artifacts; sha256sum SHA256SUMS) | |
- name: "Prepare the release note" | |
run: | | |
shasha=$(sha256sum _artifacts/SHA256SUMS | awk '{print $1}') | |
cat <<-EOF | tee /tmp/release-note.txt | |
The license (GPL-2.0) is included in the \`*.orig.tar.gz\` source archive. | |
- - - | |
The binaries were built automatically on GitHub Actions. | |
The build log is available for 90 days: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
The sha256sum of the SHA256SUMS file itself is \`${shasha}\` . | |
EOF | |
- name: "Create release" | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/20') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
tag="${GITHUB_REF##*/}" | |
gh release create -F /tmp/release-note.txt --draft --title "${tag}" "${tag}" _artifacts/* |