Skip to content

release

release #1

Workflow file for this run

name: release
on: workflow_dispatch
jobs:
publish-init:
uses: ./.github/workflows/setup-linux.yaml
with:
command: npm run publish-init-project --workspace @project-gauntlet/build
publish-linux:
needs:
- publish-init
uses: ./.github/workflows/setup-linux.yaml
with:
command: npm run publish-linux-project --workspace @project-gauntlet/build
publish-macos:
needs:
- publish-init
uses: ./.github/workflows/setup-macos.yaml
with:
command: npm run publish-macos-project --workspace @project-gauntlet/build
publish-final:
runs-on: ubuntu-latest
needs:
- publish-linux
- publish-macos
uses: ./.github/workflows/setup-linux.yaml

Check failure on line 30 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 30, Col: 5): Unexpected value 'uses' .github/workflows/release.yaml (Line: 31, Col: 5): Unexpected value 'with'
with:
command: npm run publish-final-project --workspace @project-gauntlet/buil