Skip to content

Commit d36624c

Browse files
committed
chore: manual
1 parent 5ab6b72 commit d36624c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,11 @@ jobs:
7777
git remote set-url origin "https://x-access-token:${WORKFLOW_PAT}@github.com/${{ github.repository }}.git"
7878
git ls-remote origin 1>/dev/null
7979
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 }}'
80+
- name: Commit and push
81+
run: |
82+
git add -A
83+
git commit -m "chore: release v${RESOLVED_VERSION}"
84+
git push origin "HEAD:${GITHUB_REF_NAME}"
8685
8786
# - name: Bump versions and commit
8887
# env:

0 commit comments

Comments
 (0)