Skip to content

Merge branch 'sea-test' #147

Merge branch 'sea-test'

Merge branch 'sea-test' #147

Workflow file for this run

name: Build and release
on:
push:
branches:
- 'beta'
- 'master'
jobs:
verify:
name: Verify and build
uses: ./.github/workflows/build.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/build.yml" (source branch with sha:b0dc040651262d249559016900f89e647c9ca521) : You have an error in your yaml syntax on line 32
release:
name: Release
runs-on: ubuntu-latest
needs: verify
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Prepare
uses: actions/setup-node@v4
with:
# Do not include registy url here, it creates a .npmrc which prevents
# semantic-release from authenticating with npm
node-version: '22'
cache: 'npm'
- name: Install
run: npm ci
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: executable-*
merge-multiple: true
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release