Merge pull request #9393 from okatu-loli/feat/update-alist-token #79
Workflow file for this run
This file contains hidden or 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 changelog | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| changelog: | |
| name: Create Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Delete beta tag | |
| run: git tag -d beta | |
| continue-on-error: true | |
| - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result | |
| env: | |
| GITHUB_TOKEN: ${{secrets.MY_TOKEN}} |