Skip to content

Commit

Permalink
Add create-tag with needs (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsan authored Apr 10, 2023
1 parent c71f2b8 commit a482086
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Write Info to File
name: 'Post Merge'
on:
push:
branches:
Expand Down Expand Up @@ -50,7 +50,13 @@ jobs:
git push "https://[email protected]/$GITHUB_REPOSITORY"
env:
VERSION: ${{ env.nextVersion }}
create-tag:
name: 'Create Tag'
needs: write-info
runs-on: ubuntu-latest
steps:
- name: 'Checkout Source Code'
uses: actions/checkout@v3
- uses: rickstaa/[email protected]
id: "tag_create"
with:
tag: ${{ env.nextVersion }}
tag: ${{ env.currentVersion }}

0 comments on commit a482086

Please sign in to comment.