We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56fca8 commit 9231503Copy full SHA for 9231503
.github/workflows/publish.yml
.github/workflows/release-on-push.yml
@@ -39,8 +39,15 @@ jobs:
39
TAG="v${{ steps.get_version.outputs.version }}"
40
git tag $TAG
41
git push origin $TAG
42
- gh release create $TAG --title "$TAG""
+ gh release create $TAG --title "$TAG"
43
44
- name: Tag already exists - Exit successfully
45
if: steps.check_tag.outputs.exists == 'true'
46
run: echo "Release already exists, exiting successfully."
47
+
48
+ publish:
49
+ needs: create-release
50
+ if: needs.create-release.outputs.exisits == 'false'
51
+ permissions:
52
+ id-token: write
53
+ uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
0 commit comments