Skip to content

fix: remove process declaration #99

fix: remove process declaration

fix: remove process declaration #99

name: Tagged Production Deploys for svelte2tsx
on:
push:
tags:
- "svelte2tsx-*"
jobs:
deploy:
permissions:
id-token: write # OpenID Connect token needed for provenance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
cache: pnpm
# Ensure everything is compiling
- run: "pnpm install"
- run: "pnpm build"
# Lets us use one-liner JSON manipulations the package.json files
- run: "npm install -g json"
# Setup the environment
- run: 'json -I -f packages/svelte2tsx/package.json -e "this.version=\`${{ github.ref }}\`.split(\`-\`).pop()"'
# Ship it
- run: |
cd packages/svelte2tsx
pnpm install
pnpm publish --provenance --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}