We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c60119 commit 3adfbdfCopy full SHA for 3adfbdf
1 file changed
.github/workflows/create-linked-release.yml
@@ -50,12 +50,20 @@ jobs:
50
echo "is_valid=false" >> "$GITHUB_OUTPUT"
51
fi
52
53
+ - name: Generate GitHub App token
54
+ id: app_token
55
+ uses: actions/create-github-app-token@v2
56
+ with:
57
+ app-id: ${{ secrets.WORKFLOW_APP_ID }}
58
+ private-key: ${{ secrets.WORKFLOW_APP_PRIVATE_KEY }}
59
+
60
- name: Checkout repository code
61
# We need to check out the code to be able to check for existing tags and push new ones.
62
if: steps.validate_tag.outputs.is_valid == 'true'
63
uses: actions/checkout@v4
64
with:
65
fetch-tags: true
66
+ token: ${{ steps.app_token.outputs.token }}
67
68
- name: Check if tag already exists locally
69
id: check_tag
0 commit comments