Twitch-Api-Nightly-Auto-Update #47
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: Twitch-Api-Nightly-Auto-Update | |
| on: | |
| schedule: | |
| - cron: "0 3 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| pushContainer: | |
| runs-on: self-hosted | |
| permissions: | |
| # Give the default GITHUB_TOKEN write permission to commit and push the | |
| # added or changed files to the repository. | |
| contents: write | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: true | |
| - name: Setup Golang | |
| id: setup_golang | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "stable" | |
| check-latest: true | |
| cache: false | |
| - name: install make | |
| run: sudo apt update; sudo apt-get install wget build-essential -y | |
| - name: Update & regenerate | |
| run: make gen | |
| - name: Make sure testbuild still works. | |
| run: make gen | |
| - name: Commit & Push changes | |
| id: commit_all_inputs | |
| uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: "Automated OpenApi YAML Update" | |
| branch: "main" | |
| commit_user_name: GitHub Actions Bot | |
| commit_user_email: my-github-actions-bot@example.org | |
| commit_author: Author <actions@github.com> | |
| - name: Bump Version Tag. | |
| id: bump_tag | |
| uses: anothrNick/github-tag-action@1.75.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| WITH_V: true | |
| DEFAULT_BUMP: minor | |
| DRY_RUN: false | |
| VERBOSE: true | |
| GIT_API_TAGGING: false |