Update reflection database to v690 #35
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 Update | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "database.json" | |
| - "database.msgpack" | |
| workflow_dispatch: | |
| jobs: | |
| tag-update: | |
| name: "Tag Latest Commit" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: "Prepare: Checkout" | |
| uses: actions/checkout@v4 | |
| - name: "Prepare: Setup Rokit" | |
| uses: CompeyDev/[email protected] | |
| - name: "Prepare: Git Config" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --global credential.helper "!f() { sleep 1; echo username=x-access-token; echo password=$GITHUB_TOKEN; }; f" | |
| - name: "Run: Tag Latest Commit" | |
| run: | | |
| lune run tag-latest-release | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |