Skip to content

Commit

Permalink
skip updates and retagging
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Dec 15, 2023
1 parent 77c15a3 commit bf5588e
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/bundle_webappAnd_release_v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,26 +77,14 @@ jobs:
with:
name: ${{ needs.build.outputs.webapp_bundle_name }}

- uses: actions/checkout@v3
with:
fetch-tags: true
- name: Create Tag
run: |
if git rev-parse refs/tags/${{ needs.build.outputs.tag_name }} 2>/dev/null
then
git push --delete origin refs/tags/${{ needs.build.outputs.tag_name }}
fi
git tag -a ${{ needs.build.outputs.tag_name }} ${{ needs.build.outputs.commit_sha }}
git push origin ${{ needs.build.outputs.tag_name }}
- name: Create Release
uses: ncipollo/release-action@v1
with:
commit: ${{ needs.build.outputs.commit_sha }}
tag: ${{ needs.build.outputs.tag_name }}
skipIfReleaseExists: false
skipIfReleaseExists: true
prerelease: ${{ needs.build.outputs.is_main == 'false' }}
allowUpdates: true
allowUpdates: false
generateReleaseNotes: true
makeLatest: 'false'
removeArtifacts: false
Expand Down

0 comments on commit bf5588e

Please sign in to comment.