Release #43
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: Release | |
| on: | |
| schedule: | |
| - cron: '0 3 * * 1' | |
| workflow_dispatch: | |
| inputs: | |
| next_release: | |
| type: string | |
| description: The version to release | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| name: Release | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: git config user.email '[email protected]' && git config user.name 'Jakub Zalas' | |
| - run: sudo apt-get update && sudo apt-get install -y hub | |
| - run: make auto-release NEXT_RELEASE="${{ github.event.inputs.next_release }}" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} |