This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
build(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #243
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
# Forked from https://github.com/containerd/nerdctl/blob/v0.8.1/.github/workflows/release.yml | |
# Apache License 2.0 | |
name: Release | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# https://github.com/reproducible-containers/repro-get/issues/3 | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: "Make artifacts" | |
run: make artifacts.docker | |
- name: "SHA256SUMS" | |
run: | | |
cat _artifacts/SHA256SUMS | |
- name: "The sha256sum of the SHA256SUMS file" | |
run: | | |
(cd _artifacts; sha256sum SHA256SUMS) | |
- name: "Prepare the release note" | |
run: | | |
tag="${GITHUB_REF##*/}" | |
shasha=$(sha256sum _artifacts/SHA256SUMS | awk '{print $1}') | |
cat <<-EOF | tee /tmp/release-note.txt | |
${tag} | |
(Changes to be documented) | |
## About the files | |
- repro-get-\<VERSION\>-linux-amd64: Regular binary for x86_64 | |
- repro-get-\<VERSION\>-linux-amd64.upx: Compressed binary for x86_64 | |
- repro-get-\<VERSION\>.go-mod-vendor.tar.gz: Backup of \`go mod vendor\` (Not needed for most people) | |
- - - | |
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/v') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
tag="${GITHUB_REF##*/}" | |
asset_flags=() | |
for f in _artifacts/*; do asset_flags+=("-a" "$f"); done | |
hub release create "${asset_flags[@]}" -F /tmp/release-note.txt --draft "${tag}" |