Skip to content

Commit

Permalink
Release when tagged
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 22, 2022
1 parent 9550742 commit 3d51433
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release
on:
push:
workflow_dispatch:

jobs:
release:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Wait other jobs
uses: kachick/wait-other-jobs@v1
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
if: startsWith(github.ref, 'refs/tags/')
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')

0 comments on commit 3d51433

Please sign in to comment.