Skip to content

Commit

Permalink
workflows. update files
Browse files Browse the repository at this point in the history
  • Loading branch information
edospadoni committed May 27, 2024
1 parent 814a4a1 commit cd56371
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ jobs:
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Push tag
uses: actions-ecosystem/action-push-tag@v1
with:
tag: ${{ steps.branch.outputs._0 }}dev${{ steps.vars.outputs.sha_short }}
message: 'dev release: ${{ steps.branch.outputs._0 }}dev${{ steps.vars.outputs.sha_short }}'
- name: Push Git Tag
run: |
git config user.name "NethBot"
git config user.email "[email protected]"
git commit -m '${{ steps.branch.outputs._0 }}.dev.${{ steps.vars.outputs.sha_short }}'
git tag ${{ steps.branch.outputs._0 }}.dev.${{ steps.vars.outputs.sha_short }}
git push origin dev --tags

0 comments on commit cd56371

Please sign in to comment.