Skip to content

Trying to publish

Trying to publish #506

Workflow file for this run

name: Trying to publish
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
concurrency:
group: ci-publish
cancel-in-progress: true
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Git checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Patching
id: patching
run: npm start
continue-on-error: true
- name: Publish
if: steps.patching.outcome == 'success'
working-directory: sheetjs
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}