pull/1503/head
celetor 3 years ago
parent 91f6abfe74
commit 66eaa6195a
  1. 7
      .github/workflows/release.yml
  2. 3
      .github/workflows/test.yml

@ -78,7 +78,9 @@ jobs:
files: ${{ github.workspace }}/apk/*.apk files: ${{ github.workspace }}/apk/*.apk
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push Assets To "release" Branch - name: Push Assets To "release" Branch
if: ${{ github.actor == 'gedoor' }}
run: | run: |
cd $GITHUB_WORKSPACE/apk || exit 1 cd $GITHUB_WORKSPACE/apk || exit 1
git init git init
@ -87,11 +89,12 @@ jobs:
git checkout -b release git checkout -b release
git add *.apk git add *.apk
git commit -m "${{ env.RELEASE_VERSION }}" git commit -m "${{ env.RELEASE_VERSION }}"
git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.actor }}/release"
git push -f -u origin release git push -f -u origin release
- name: Purge Jsdelivr Cache - name: Purge Jsdelivr Cache
if: ${{ github.actor == 'gedoor' }}
run: | run: |
result=$(curl -s https://purge.jsdelivr.net/gh/${{ github.repository }}@release/) result=$(curl -s https://purge.jsdelivr.net/gh/${{ github.actor }}/release@release/)
if echo $result |grep -q 'success.*true'; then if echo $result |grep -q 'success.*true'; then
echo "jsdelivr缓存更新成功" echo "jsdelivr缓存更新成功"
else else

@ -117,6 +117,7 @@ jobs:
test_Branch: test_Branch:
needs: [ prepare, build ] needs: [ prepare, build ]
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ github.actor == 'gedoor' }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v2
@ -133,7 +134,7 @@ jobs:
git checkout -b test git checkout -b test
git add *.apk git add *.apk
git commit -m "${{ needs.prepare.outputs.versionL }}" git commit -m "${{ needs.prepare.outputs.versionL }}"
git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.actor }}/release"
git push -f -u origin test git push -f -u origin test
telegram: telegram:

Loading…
Cancel
Save