fix(ci): pass GITHUB_REF via devbox -e flag for beta releases (#1144) #169
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: CI Fast | |
| on: | |
| push: | |
| branches: [master, beta] | |
| pull_request: | |
| branches: [master, beta] | |
| concurrency: | |
| group: ci-fast-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: devbox installer | |
| uses: jetify-com/devbox-install-action@v0.14.0 | |
| with: | |
| project-path: shells/devbox-fast.json | |
| enable-cache: 'false' | |
| - name: build | |
| run: devbox run --config=shells/devbox-fast.json build |