Merge remote-tracking branch 'origin/main' #5
Workflow file for this run
This file contains hidden or 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
| # gitagotchi release — cut on any v* tag: gate on the test suite, build the | |
| # .deb, publish a GitHub Release with the .deb + checksums, and (if a TAP_TOKEN | |
| # secret is set) bump the Homebrew formula. Ship a version with `git tag v1.2.3 | |
| # && git push --tags`. | |
| name: release | |
| on: | |
| push: | |
| tags: ["v*"] | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| env: | |
| # a PAT with contents:write on homebrew-gitagotchi; unset → the formula | |
| # bump step skips (the .deb + release still ship) | |
| TAP_TOKEN: ${{ secrets.TAP_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: gate on the offline suite | |
| run: gh-pet/tests/run.sh | |
| - name: version from the tag (must match util.sh VERSION) | |
| id: v | |
| run: | | |
| v=${GITHUB_REF_NAME#v} | |
| code=$(sed -n 's/^VERSION="\(.*\)"/\1/p' gh-pet/lib/util.sh) | |
| if [[ $v != "$code" ]]; then | |
| echo "::error::tag v$v disagrees with util.sh VERSION=$code — bump VERSION before tagging" >&2 | |
| exit 1 | |
| fi | |
| echo "version=$v" >> "$GITHUB_OUTPUT" | |
| - name: build the .deb | |
| run: packaging/build-deb.sh "${{ steps.v.outputs.version }}" dist | |
| - name: checksums | |
| run: cd dist && sha256sum *.deb | tee SHA256SUMS | |
| - name: publish the release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh release create "$GITHUB_REF_NAME" \ | |
| --title "$GITHUB_REF_NAME" \ | |
| --generate-notes \ | |
| dist/*.deb dist/SHA256SUMS | |
| - name: bump the homebrew formula | |
| if: ${{ env.TAP_TOKEN != '' }} | |
| env: | |
| GH_TOKEN: ${{ env.TAP_TOKEN }} | |
| run: packaging/bump-formula.sh "${{ steps.v.outputs.version }}" |