Skip to content

Commit

Permalink
feat(workflows): add a shared publish-please workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeerivers committed Nov 27, 2023
1 parent 45ebb7f commit ce74fed
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/publish-please.yml
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 }}

0 comments on commit ce74fed

Please sign in to comment.