diff --git a/.github/workflows/androidsign.yml b/.github/workflows/androidsign.yml index 5c1c9b0..86ebe00 100644 --- a/.github/workflows/androidsign.yml +++ b/.github/workflows/androidsign.yml @@ -103,10 +103,10 @@ jobs: git checkout ${{ github.ref_name }} || git checkout -b ${{ github.ref_name }} origin/${{ github.ref_name }} npm install -g standard-version npx standard-version --release-as ${{ github.ref_name }} - git remote set-url origin https://x-access-token:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/${{ github.repository }}.git + git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git git push --follow-tags origin ${{ github.ref_name }} env: - GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} continue-on-error: true - name: Get Commit Message