Prepare v1.7.1 #40
Workflow file for this run
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: | |
tags: | |
- 'v*' | |
jobs: | |
goreleaser: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Get version from tag | |
uses: little-core-labs/[email protected] | |
id: tag_name | |
with: | |
tagRegex: "v(.*)" | |
- name: Get Changelog Entry | |
id: changelog_reader | |
uses: mindsers/changelog-reader-action@v2 | |
with: | |
version: ${{ steps.tag_name.outputs.tag }} | |
path: ./CHANGELOG.md | |
- name: Safe Changelog Text | |
id: changelog_text | |
run: | | |
echo '${{ steps.changelog_reader.outputs.changes }}' >> $HOME/changelog_entry | |
echo ::set-output name=clfile::$HOME/changelog_entry | |
- name: Docker Login | |
uses: azure/docker-login@v2 | |
with: | |
login-server: 'docker.pkg.github.com' | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker Login | |
uses: azure/docker-login@v2 | |
with: | |
login-server: 'https://index.docker.io/v1/' | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: --release-notes ${{ steps.changelog_text.outputs.clfile }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |