Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish npm package
on:
push:
branches:
- develop
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: Should this be on [published] or main?

Going off of example workflow guidance:

name: Publish package to GitHub Packages
on:
  release:
    types: [published]
…

Full source →

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --provenance --access public --tag develop
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

praise: Provenance flag is a great idea!

env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@uswds/web-components",
"private": true,
"version": "1.0.0-alpha",
"version": "0.0.1-alpha",
"type": "module",
"files": [
".storybook",
Expand All @@ -10,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/components/index.js",
Expand Down