Skip to content

Excalibur v0.28.3 Release #1

Excalibur v0.28.3 Release

Excalibur v0.28.3 Release #1

Workflow file for this run

name: Release to NPM
on:
release:
types: [published]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }

Check failure on line 8 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release to NPM

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 8, Col: 20): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
jobs:
build:
uses: ./.github/workflows/build.yml
deploy_release:
name: Publish npm package
needs: [build]
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 100
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: npm
- run: npm ci
- run: npm run build
- run: npm run build:esm
- run: npm publish