-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to make a workflow for publishing to NPM (mostly copied over from…
… dbos-transact)
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Publish current branch to npm | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
strategy: | ||
matrix: | ||
package: [ | ||
. | ||
] | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 # fetch-depth 0 needed for NBGV | ||
- name: Use Node.js 20 | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 20 | ||
- name: Nerdbank.GitVersioning | ||
id: nbgv | ||
uses: dotnet/[email protected] | ||
with: | ||
stamp: ${{ matrix.package }}/package.json | ||
- run: npm ci | ||
- run: cd ${{ matrix.package }}; npm run build | ||
- name: Publish release to npm | ||
uses: JS-DevTools/npm-publish@v3 | ||
id: npmrelease | ||
# boolean properties from NBGV step appears to be converted into *capitalized* strings | ||
# so explicitly string compare PublicRelease output value | ||
if: ${{ steps.nbgv.outputs.PublicRelease == 'True'}} | ||
with: | ||
token: ${{ secrets.NPM_PUBLISH }} | ||
registry: https://registry.npmjs.org/ | ||
tag: ${{ steps.nbgv.outputs.PrereleaseVersion == '' && 'latest' || 'preview' }} # Assign a 'preview' tag to versions end with '-preview'. Otherwise, assign a 'latest' tag to the latest release. | ||
access: public | ||
package: ${{ matrix.package }} | ||
- name: Publish test package to npm | ||
uses: JS-DevTools/npm-publish@v3 | ||
id: npmtest | ||
if: ${{ steps.nbgv.outputs.PublicRelease == 'False'}} | ||
with: | ||
token: ${{ secrets.NPM_PUBLISH }} | ||
registry: https://registry.npmjs.org/ | ||
tag: 'test' | ||
access: public | ||
package: ${{ matrix.package }} | ||
- if: ${{ steps.npmrelease.outputs.type }} | ||
run: echo "Published a new release package!" | ||
- if: ${{ steps.npmtest.outputs.type }} | ||
run: echo "Published a new test package!" |