Release ikuai-bypass #2
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 goreleaser | |
on: | |
workflow_dispatch: | |
push: | |
# run only against tags git tag v0.1.0&&git push --tags | |
tags: | |
- "*" | |
jobs: | |
release: | |
name: Release on GitHub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Validates GO releaser config | |
uses: docker://goreleaser/goreleaser:latest | |
with: | |
args: check | |
- name: Create release on GitHub | |
uses: docker://goreleaser/goreleaser:latest | |
with: | |
args: release | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |