summaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorKurenai <[email protected]>2021-10-19 12:20:09 +0800
committerKurenai <[email protected]>2021-10-19 12:20:29 +0800
commitc3e215849a372adc4898f28ccaa8e44be9a5a016 (patch)
tree8d7936a3f2199eed4770b9b04ec0f3edc1613c4d /.github/workflows/release.yml
parent4946b6b582de7f34a779b1ccbde33405bca2dc4b (diff)
parentbcbfb790858ce9f6afcc3eeaa4f66cfd9dc7f9e7 (diff)
Merge branch 'workflow-demo'
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..1e89ee8
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,26 @@
+name: Release
+on:
+ create:
+ tags:
+ - v*
+ workflow_dispatch:
+
+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}} \ No newline at end of file