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 7a20971 commit 7da08f9Copy full SHA for 7da08f9
.github/workflows/sync-release-to-master.yml
@@ -29,10 +29,12 @@ jobs:
29
git merge ${{ github.sha }} --ff-only
30
git push
31
32
+ - name: Connect with gh auth login
33
+ run: echo "${{ steps.app-token.outputs.token }}" | gh auth login --with-token;
34
+
35
- name: Publish release
36
run: |
37
VERSION=$(echo ${{ github.head_ref }} | sed 's/release-//')
- echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
38
gh release edit v$VERSION --draft=false
39
- name: Change back branch rule to not require up-to-date branch
40
0 commit comments