We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ebef3 commit ec42a79Copy full SHA for ec42a79
.github/workflows/release-please.yml
@@ -27,18 +27,18 @@ on:
27
runs-on: ubuntu-latest
28
steps:
29
- name: Extract tag name
30
- id: tag
31
- run: |
+ id: tag
+ run: |
32
full_tag="${{ needs.release-please.outputs.tag_name }}"
33
tag="${full_tag#*--}" # removes everything before the --
34
echo "tag=$tag" >> $GITHUB_OUTPUT
35
36
- name: Trigger release.yml
37
38
curl -X POST \
39
-H "Authorization: token ${{ secrets.GH_PAT }}" \
40
-H "Accept: application/vnd.github.v3+json" \
41
https://api.github.com/repos/Loop3d/${{ env.PACKAGE_NAME }}/actions/workflows/release.yml/dispatches \
42
-d "{\"ref\":\"${{ steps.tag.outputs.tag }}\"}"
43
44
-
+
0 commit comments