Skip to content

Commit

Permalink
[release] 5.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
heyanLE committed Feb 24, 2024
1 parent b9650c5 commit 12b5659
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,27 @@ jobs:
run: |
gh release create -d ${{ github.ref_name }} easybangumi-*-${{ github.ref_name }}.apk
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ secrets.TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
repository: 'easybangumiorg/EasyBangumiPrivate'
token: ${{ secrets.TOKEN }}
path: 'private'
ref: main
- name: push_mapping
run: |
cd private
rm -r ${{ github.ref_name }} || ls
mv ../app/build/outputs/mapping/release ./${{ github.ref_name }}
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "[auto] extension parse"
- name: Push changes
uses: ad-m/github-push-action@master
with:
force: true
github_token: ${{ secrets.token }}
branch: main
directory: public

0 comments on commit 12b5659

Please sign in to comment.