Skip to content

chore(release): publish #5

chore(release): publish

chore(release): publish #5

Workflow file for this run

name: Publish
on:
push:
tags: ["*-*.*.*"]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Nodejs
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install node dependencies
run: npm ci
- name: Set up Python with PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: "3.11"
- name: Install Python dependencies
run: pdm sync -d
- name: Publish
run:
- [[ "$GIT_TAG" =~ ^(.*)-[0-9]+\.[0-9]+\.[0-9]+$ ]] && export PROJECT="${BASH_REMATCH[1]}"

Check failure on line 37 in .github/workflows/publish.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yaml

Invalid workflow file

You have an error in your yaml syntax on line 37
- npx nx release publish --projects $PROJECT
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
NPM_CONFIG_PROVENANCE: true
PDM_PUBLISH_USERNAME: __token__
PDM_PUBLISH_PASSWORD: ${{ secrets.PYPI_ACCESS_TOKEN }}