Skip to content

Commit

Permalink
🎉Release 1.3,修改Android CI Release编译链问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Hny0305Lin committed Jul 8, 2024
1 parent 717723b commit c0e5f72
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/androidsign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
artifacts: "NLChat_${{ github.ref_name }}.apk"
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # 使用 PAT
generateReleaseNotes: true
continue-on-error: true

- name: Bump version and generate changelog
id: version
Expand All @@ -101,9 +102,12 @@ jobs:
npm install -g standard-version
standard-version --release-as ${{ github.ref_name }}
git push --follow-tags origin ${{ github.ref_name }}
continue-on-error: true

- name: Get Commit Message
id: get_commit_message
run: echo "COMMIT_MESSAGE=$(git log -1 --pretty=%B)" >> $GITHUB_ENV
continue-on-error: true

- name: Create or Update Release Notes
uses: softprops/action-gh-release@v1
Expand All @@ -115,6 +119,7 @@ jobs:
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # 使用环境变量
continue-on-error: true

multi-platform-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit c0e5f72

Please sign in to comment.