-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (35 loc) · 913 Bytes
/
try-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 }}