Release finschia-sdk v0.48.0 (#1143) #22
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 | |
# This workflow helps with creating releases. | |
# This job will only be triggered when a tag (vX.X.x) is pushed | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: git fetch --force --tags | |
- name: Build & Publish release | |
run: | | |
make release | |
env: | |
GORELEASER_MOUNT_CONFIG: true | |
GORELEASER_IMAGE: line/goreleaserx:1.13.1-1.19.3 | |
GORELEASER_RELEASE: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |