Skip to content

fix pipeline error

fix pipeline error #37

Workflow file for this run

name: Publish to NPM
on:
release:
types: [published]
jobs:
publish:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.com/
scope: '@relewise'
- name: Calculate environment variables
run: |
echo "TAG_NAME=$(github.event.tag_name)"
echo "PACKAGE_PATH=$(github.event.tag_name.split('@')[0])" >> $GITHUB_ENV
echo "VERSION=$(github.event.tag_name.split('@')[1])" >> $GITHUB_ENV
- uses: brettdorrans/write-version-to-file@master
if: ${{ PACKAGE_PATH == 'client' }}
name: Update version
working-directory: ./packages/${ PACKAGE_PATH }
with:
filename: './src/version.ts'
placeholder: '${VERSION}'
- run: npm ci
working-directory: ./packages/${ PACKAGE_PATH }
- run: npm run publish
working-directory: ./packages/${ PACKAGE_PATH }
- run: npm publish --access public
working-directory: ./packages/${ PACKAGE_PATH }
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}