Skip to content

Commit

Permalink
chore: configure publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
mathuo committed Oct 22, 2023
1 parent c104503 commit d2c2ba5
Showing 1 changed file with 36 additions and 9 deletions.
45 changes: 36 additions & 9 deletions .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,47 @@
name: Publish Experimental Package to npmjs

env:
NPM_CONFIG_PROVENANCE: true
NPM_CONFIG_PROVENANCE: true
on:
workflow_dispatch:
# release:
# types: [published]
release:
types: [published]
jobs:
build:
publish:
if: github.event_name == 'release'
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
permissions:
id-token: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- run: yarn
- name: Publish dockview-core
run: npm publish --provenance
working-directory: packages/dockview-core
- name: Publish dockview
run: npm publish --provenance
working-directory: packages/dockview
publish-experimental:
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand All @@ -30,10 +61,6 @@ jobs:
- name: Publish dockview-core
run: npm publish --provenance --tag experimental
working-directory: packages/dockview-core
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish dockview
run: npm publish --provenance --tag experimental
working-directory: packages/dockview
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit d2c2ba5

Please sign in to comment.