Publish Changelog #23
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
| # Euphoria station: this is a legacy solution but we are experiencing some technical difficulties, so we can't rely on the modern SS14.Changelog solution. | |
| name: Publish Changelog | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 6 * * *' | |
| jobs: | |
| publish_changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{secrets.GITHUB_TOKEN}} | |
| ref: master | |
| - name: Publish changelog | |
| run: Tools/actions_changelogs_since_last_run.py | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| CHANGELOG_DIR: ${{ vars.CHANGELOG_DIR }} | |
| DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }} | |
| continue-on-error: true |