-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rifa Achrinza <[email protected]>
- Loading branch information
Showing
4 changed files
with
137 additions
and
14 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,66 @@ | ||
name: CD | ||
|
||
on: | ||
push: {} # Remove me! | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: Branch to publish a release from | ||
required: true | ||
default: main | ||
type: choice | ||
options: | ||
- main | ||
- v9.x | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
test: | ||
uses: ./.github/workflows/ci.yaml | ||
build: | ||
name: Build | ||
permissions: | ||
id-token: write | ||
contents: read | ||
actions: read | ||
# Do not pin to hash | ||
# See: https://github.com/slsa-framework/slsa-verifier/issues/12 | ||
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | ||
with: | ||
node-version: 22 | ||
run-scripts: ci, test | ||
publish: | ||
name: Publish | ||
runs-on: ubuntu-24.04 | ||
needs: [build] | ||
steps: | ||
- name: Download Tarball | ||
uses: slsa-framework/slsa-github-generator/actions/nodejs/[email protected] | ||
with: | ||
name: ${{ needs.build.outputs.package-download-name }} | ||
path: ${{ needs.build.outputs.package-name }} | ||
sha256: ${{ needs.build.outputs.package-download-sha256 }} | ||
- name: Download Provenance | ||
uses: slsa-framework/slsa-github-generator/actions/nodejs/[email protected] | ||
with: | ||
name: ${{ needs.build.outputs.provenance-download-name }} | ||
path: attestations | ||
sha256: ${{ needs.build.outputs.provenance-download-sha256 }} | ||
- name: Request for NPM 2FA Code | ||
uses: step-security/wait-for-secrets@5809f7d044804a5a1d43217fa8f3e855939fc9ef # v1.2.0 | ||
with: | ||
secrets: | | ||
npm-otp: | ||
name: NPM Registry OTP | ||
description: NPM Registry TOTP code for `achrinza-bot` NPM account | ||
- name: Publish Package | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
TARBALL_PATH: ${{ needs.build.outputs.package-name }} | ||
PROVENANCE_PATH: ./attestations/${{ needs.build.outputs.provenance-name }} | ||
run: | | ||
npm publish \ | ||
--access=public \ | ||
--provenance-file="$PROVENANCE_PATH" \ | ||
"$TARBALL_PATH" |
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
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 |
---|---|---|
|
@@ -4,3 +4,8 @@ | |
npm-debug.log | ||
node-ipc.cjs | ||
/coverage/ | ||
|
||
# Code editors | ||
\#*# | ||
.#* | ||
*~ |
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,44 @@ | ||
# Publishing a Release | ||
|
||
This project uses a manually-invoked GitHub Actions workflow to publish its packages. | ||
|
||
This workflow uses: | ||
- The SLSA Node.js builder to achieve SLSA v3-level provenance | ||
- An NPM granular access token for `achrinza-bot` | ||
|
||
## Publishing | ||
|
||
Before continuing, enusre that you have: | ||
|
||
1. A GitHub account with the `Repository Admin` role for the `achrinza/node-ipc` repository | ||
2. The username and password for the `achrinza-bot` NPM account or any account that has: | ||
1. TOTP 2FA enabled | ||
2. Write access to the `@achrinza/node-ipc` NPM package | ||
3. The TOTP generator for said account | ||
|
||
### 1. Regenerating the NPM Granular Token | ||
|
||
1. Go to [New Granular Access Token](https://www.npmjs.com/settings/achrinza/tokens/granular-access-tokens/new) | ||
2. Generate a granular access token that: | ||
1. expires in 1 day | ||
2. has `Read and write` permssions for only the `@achrinza/node-ipc` package. | ||
3. Click `Generate` and copy the token | ||
|
||
### 2. Creating a GitHub "Release" | ||
|
||
1. Delete and re-fetch all Git tags | ||
This is necessary to prevent accidental tags from being pushed to the GitHub repository | ||
|
||
On Linux or macOS: | ||
```sh | ||
$ git branch -l | xargs -I{} git branch -d {} | ||
$ git fetch 'refs/tags/*:refs/tags/*' | ||
``` | ||
|
||
On Windows () | ||
|
||
### 3. Creating an NPM Release | ||
|
||
1. Go to [Update Action secret NPM_TOKEN](https://github.com/achrinza/node-ipc/settings/secrets/actions/NPM_TOKEN) | ||
2. Paste the token and click `Update secret` | ||
3. Go to [CD * workflow runs](https://github.com/achrinza/node-ipc/actions/workflows/cd.yaml) |