Release #235
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
| name: Release | |
| on: | |
| workflow_run: | |
| workflows: ["Build and test"] | |
| branches: [main] | |
| types: | |
| - completed | |
| permissions: | |
| contents: write | |
| packages: write | |
| pages: write | |
| security-events: write | |
| actions: read | |
| jobs: | |
| bump-version: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: arnested/go-version-action@v1 | |
| id: go-version | |
| - name: Bump version and push tag | |
| uses: anothrNick/[email protected] | |
| id: version | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| WITH_V: true | |
| DEFAULT_BUMP: patch | |
| DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} | |
| - name: Set up Go ${{ steps.go-version.outputs.latest }} | |
| uses: WillAbides/[email protected] | |
| with: | |
| go-version: ${{ steps.go-version.outputs.latest }}.x | |
| ignore-local: true | |
| - run: go version | |
| - name: Install changelog management tool | |
| run: go install github.com/goreleaser/chglog/cmd/chglog@main | |
| - name: Build changelog | |
| run: chglog init | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| version: latest | |
| args: release | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| - name: Import GPG signing key | |
| run: | | |
| mkdir -p -m 0700 ~/.gnupg/ | |
| printf -- "${{ secrets.GPG_SIGNING_KEY }}" > ~/.gnupg/private-key.asc | |
| gpg --import --no-tty --batch --yes ~/.gnupg/private-key.asc | |
| - name: Copy deb packages into build area | |
| run: | | |
| mkdir -p site | |
| cp -v dist/*.deb site/ | |
| - name: Scan packages | |
| run: | | |
| apt-ftparchive packages . > Packages | |
| gzip -k -f Packages | |
| working-directory: site | |
| - name: apt-ftparchive release | |
| run: | | |
| apt-ftparchive -o APT::FTPArchive::Release::Origin="Arne Jørgensen" -o APT::FTPArchive::Release::Label="${{ steps.go-version.outputs.module }}" release . > Release | |
| echo "Changelogs: $(gh api /repos/{owner}/{repo}/pages --jq .html_url)changelog?path=@CHANGEPATH@" >> Release | |
| gpg -abs --no-tty --batch --yes -o - Release > Release.gpg | |
| gpg --clearsign --no-tty --batch --yes -o - Release > InRelease | |
| working-directory: site | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| - uses: ZacJW/[email protected] | |
| with: | |
| input_files: '[["README.md"]]' | |
| output_files: '["README.html"]' | |
| - name: Fix link / package name in GitHub Pages | |
| run: | | |
| DEB=$(grep linux_amd64.deb dist/checksums.txt | awk '{print $2}') | |
| sed -i "s/system-state_.*_linux_amd64.deb/<a href=\"https:\/\/github.com\/arnested\/system-state\/releases\/latest\/download\/${DEB}\">${DEB}<\/a>/" README.html | |
| sed -i 's/<!DOCTYPE html>//' README.html | |
| cat page/header.html README.html page/footer.html > site/index.html | |
| - name: Add changelog to GitHub Pages | |
| run: chglog format --template deb --output site/changelog | |
| - name: Deploy deb packages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| folder: site | |
| clean: true | |
| single-commit: true | |
| - name: Post status to Google Chat | |
| if: ${{ always() }} | |
| uses: containrrr/shoutrrr-action@v1 | |
| with: | |
| url: "${{ secrets.WATCHTOWER_NOTIFICATION_URL }}" | |
| message: "Released `${{ github.repository }}`@`${{ github.sha }}` as ${{ steps.version.outputs.tag }}: *${{ job.status }}*." | |
| docker-build: | |
| name: Docker build and push | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@master | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_TOKEN }} | |
| - name: Build and push Docker images | |
| uses: docker/build-push-action@v6 | |
| with: | |
| builder: ${{ steps.buildx.outputs.name }} | |
| tags: ${{ github.repository }}:latest | |
| push: true |