Turbopack Nightly Release #232
This file contains 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: Turbopack Nightly Release | |
on: | |
schedule: | |
- cron: "15 8 * * *" # Run every day at 00:15 PST | |
workflow_dispatch: | |
jobs: | |
turbopack_nightly: | |
name: Cut nightly Turbopack release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Tag nightly | |
id: tag_version | |
uses: ./.github/actions/turbopack-bump | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
prefix: "turbopack-" |