Merge pull request #1505 from celetor/master

修复actions
pull/1511/head
kunfei 3 years ago committed by GitHub
commit af5d2821da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/release.yml
  2. 2
      .github/workflows/test.yml

@ -85,8 +85,8 @@ jobs:
git init
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git clone "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.actor }}/release" -b release release-branch
mv -rf $GITHUB_WORKSPACE/apk/*.apk release-branch
git clone "https://${{ github.actor }}:${{ secrets.ACTIONS_TOKEN }}@github.com/${{ github.actor }}/release" -b release release-branch
mv -f $GITHUB_WORKSPACE/apk/*.apk release-branch
cd release-branch
git add *.apk
git commit -m "${{ env.RELEASE_VERSION }}"

@ -131,7 +131,7 @@ jobs:
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git clone "https://${{ github.actor }}:${{ secrets.ACTIONS_TOKEN }}@github.com/${{ github.actor }}/release" -b test test-branch
mv -rf $GITHUB_WORKSPACE/apk/*.apk test-branch
mv -f $GITHUB_WORKSPACE/apk/*.apk test-branch
cd test-branch
git add *.apk
git commit -m "${{ needs.prepare.outputs.versionL }}"

Loading…
Cancel
Save