Skip to content

Upgrade the form-data lib (#293) #164

Upgrade the form-data lib (#293)

Upgrade the form-data lib (#293) #164

Workflow file for this run

name: Publish
on:
push:
tags:
- "*"
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bash .ci/runChecks.sh
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: current
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build:ci -ws
env:
BUILD_NUMBER: ${{ github.run_number }}
COMMIT_HASH: ${{ github.sha }}
VERSION: ${{ github.ref_name }}
- run: bash .ci/publishNpm.sh
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
VERSION: ${{ github.ref_name }}
needs: ["run-checks"]