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: "Nightly release canary" | |
| # on: | |
| # workflow_dispatch: {} | |
| # schedule: | |
| # # 5AM UTC | |
| # - cron: "0 5 * * *" | |
| # concurrency: | |
| # group: ${{ github.workflow }} | |
| # permissions: | |
| # actions: write | |
| # id-token: write | |
| # jobs: | |
| # release_dry_run: | |
| # runs-on: | |
| # - ubunutu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # with: | |
| # # Needed to pull full commit history for release version number inference | |
| # fetch-depth: 0 | |
| # - uses: ./.github/actions/cleanup | |
| # - uses: ./.github/actions/setup-rust | |
| # - uses: spiraldb/actions/.github/actions/[email protected] | |
| # - name: Run release-plz | |
| # id: run-release-plz | |
| # uses: MarcoIeni/[email protected] | |
| # with: | |
| # command: release --dry-run | |
| # env: | |
| # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |