Skip to content

Commit

Permalink
Merge pull request #1302 from onflow/ianthpun/flowkit-tag
Browse files Browse the repository at this point in the history
add new flowkit-release workflow
  • Loading branch information
ianthpun authored Dec 18, 2023
2 parents ea38f75 + 9a9b456 commit be84b67
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/flowkit-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Flowkit Release

on:
release:
types: [published]

jobs:
flowkit-release:
if: "!github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: tag flowkit release
env:
FLOWKIT_RELEASE_TAG: flowkit/${{ github.event.release.tag_name }}
run: |
git tag "$FLOWKIT_RELEASE_TAG"
git push origin "$FLOWKIT_RELEASE_TAG"

0 comments on commit be84b67

Please sign in to comment.