We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16b6b7 commit 6bae801Copy full SHA for 6bae801
1 file changed
.github/workflows/remote_release.yml
@@ -3,6 +3,10 @@ name: Remote Tagging
3
on:
4
repository_dispatch:
5
types: [update-tag]
6
+
7
+permissions:
8
+ contents: write
9
+ repository-projects: write
10
11
jobs:
12
submodule:
@@ -14,12 +18,9 @@ jobs:
14
18
with:
15
19
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
16
20
17
- - name: Update submodule and push with tag
- run: |
- git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
- git config --local user.name "github-actions[bot]"
21
- git tag ${{ github.event.client_payload.tag }}
22
-
+ - name: Create tag
+ run: git tag ${{ github.event.client_payload.tag }}
23
24
- name: GitHub Push
25
uses: ad-m/github-push-action@v0.6.0
26
0 commit comments