Skip to content

Release

Release #311

Workflow file for this run

name: Release
on:
workflow_run:
workflows: ["Build and test"]
branches: [main]
types:
- completed
permissions:
contents: write
jobs:
bump-version:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.67.0
id: version
env:
GITHUB_TOKEN: ${{ github.token }}
WITH_V: true
DEFAULT_BUMP: patch
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
RELEASE_BRANCHES: main
- name: Setup Go
uses: WillAbides/setup-go-faster@v1.13.0
with:
go-version-file: go.mod
- name: go version
env:
GO111MODULE: 'on'
run: go version
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Import GPG signing key
run: |
mkdir -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: |
dpkg-scanpackages --multiversion . > Packages
gzip -k -f Packages
working-directory: site
- name: apt-ftparchive release
run: |
apt-ftparchive -o APT::FTPArchive::Release::Origin="Arne Jørgensen" release . > Release
gpg -abs --no-tty --batch --yes -o - Release > Release.gpg
gpg --clearsign --no-tty --batch --yes -o - Release > InRelease
working-directory: site
- uses: BaileyJM02/markdown-to-pdf@v1.2.0
with:
input_path: index.md
output_dir: site/
build_html: true
build_pdf: false
template: page/template.html
- name: Fix link / package name in GitHub Pages
run: |
DEB=$(grep linux_amd64.deb dist/checksums.txt | awk '{print $2}')
sed -i "s/ldddns_.*_linux_amd64.deb/<a href=\"https:\/\/github.com\/arnested\/ldddns\/releases\/latest\/download\/${DEB}\">${DEB}<\/a>/" site/index.html
- name: Add install script to GitHub Pages
run: cp -v install.sh site/install.sh
- 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 }}*."