We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ab6b72 commit d36624cCopy full SHA for d36624c
.github/workflows/release.yml
@@ -77,12 +77,11 @@ jobs:
77
git remote set-url origin "https://x-access-token:${WORKFLOW_PAT}@github.com/${{ github.repository }}.git"
78
git ls-remote origin 1>/dev/null
79
80
- - name: Commit & push with PAT
81
- uses: actions-js/push@v1.4
82
- with:
83
- github_token: ${{ secrets.WORKFLOW_PAT }}
84
- branch: ${{ github.ref_name }}
85
- message: 'chore: release v${{ env.RESOLVED_VERSION }}'
+ - name: Commit and push
+ run: |
+ git add -A
+ git commit -m "chore: release v${RESOLVED_VERSION}"
+ git push origin "HEAD:${GITHUB_REF_NAME}"
86
87
# - name: Bump versions and commit
88
# env:
0 commit comments