refactor: testbed: do not upload pkg build dirs #30
Workflow file for this run
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: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'stage/**' # branch pattern for general changes | ||
# Enable running this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
jobs: | ||
index: | ||
name: Index | ||
uses: ./.github/workflows/index.yaml | ||
testbed: | ||
needs: index | ||
name: Testbed | ||
uses: ./.github/workflows/testbed.yaml | ||
pages: | ||
Check failure on line 25 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
needs: [index, testbed] | ||
name: Pages | ||
uses: ./.github/workflows/pages.yaml |