build(deps): bump tar and @cycjimmy/semantic-release-action #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Release | |
on: push | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build CHANGELOG | |
run: echo ${{ github.sha }} > CHANGELOG.txt | |
- name: Show CHANGELOG | |
run: cat CHANGELOG.txt | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
body_path: CHANGELOG.txt | |
files: | | |
release-upload/needUpload.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |