Skip to content

Merge pull request #68 from dwango/feature/fix-issue-64 #5

Merge pull request #68 from dwango/feature/fix-issue-64

Merge pull request #68 from dwango/feature/fix-issue-64 #5

Workflow file for this run

name: ci
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
push:
tags:
- "v*.*.*"
jobs:
gh-release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: stable
- uses: goreleaser/goreleaser-action@v5
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
DEPLOY_PRIVATE_KEY: ${{ secrets.deploy_private_key }}