Fix CI Env #2
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 Dry Run | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| release-dry-run: | |
| name: Release Dry Run | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: devbox installer | |
| uses: jetify-com/[email protected] | |
| with: | |
| project-path: shells/minimal/devbox.json | |
| enable-cache: 'false' | |
| - name: Release Dry Run | |
| run: devbox run --config=shells/minimal/devbox.json release-dry-run | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |