-
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.
refactor(workflows): separate release and publish into two different …
…shared workflows (#11) this actually brings back the ones i had before, and references both of them from the release-and-publish workflow. easier sharing and better readability, yay!
- Loading branch information
1 parent
c5d7972
commit ef7cadd
Showing
3 changed files
with
77 additions
and
46 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,49 @@ | ||
name: Publish Please | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
github_ref: | ||
description: The git ref to publish | ||
type: string | ||
required: true | ||
secrets: | ||
READONLY_NPM_TOKEN: | ||
description: Needed to install private @hedia npm packages | ||
required: true | ||
PUBLISHING_NPM_TOKEN: | ||
description: Needed to publish @hedia npm packages | ||
required: true | ||
|
||
jobs: | ||
publish-please: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ inputs.github_ref }} | ||
fetch-depth: 1 | ||
|
||
- name: Setup Node.js Environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: "package.json" | ||
always-auth: true | ||
registry-url: https://registry.npmjs.org | ||
scope: "@hedia" | ||
|
||
- name: Install Dependencies | ||
run: npm ci | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.READONLY_NPM_TOKEN }} | ||
|
||
- name: Build | ||
run: npm run build --if-present | ||
|
||
- name: Publish to npm | ||
run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.PUBLISHING_NPM_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Release Please | ||
|
||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
if: > | ||
github.event_name == 'workflow_dispatch' || | ||
(github.event_name == 'pull_request' && | ||
github.event.pull_request.merged == true && | ||
contains(github.event.pull_request.labels.*.name, 'autorelease: pending') | ||
) | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
with: | ||
release-type: node |