ci: assemble complete latest.json across all platforms #69
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: Tag | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| jobs: | |
| tag: | |
| name: Add tag to source repo | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: AlistGo/desktop | |
| token: ${{ secrets.MY_TOKEN }} | |
| - name: Add tag | |
| run: | | |
| git config --local user.email "i@nn.ci" | |
| git config --local user.name "Andy Hsu" | |
| git tag -a ${{ github.ref_name }} -m "${{ github.ref_name }}" | |
| - name: Push tags | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.MY_TOKEN }} | |
| repository: AlistGo/desktop |