🏷️ Publish NPM Latest #32
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
name: 🏷️ Publish NPM Latest | |
on: | |
workflow_dispatch: | |
inputs: | |
dryrun: | |
type: boolean | |
description: Dry-Run | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
deploy-npm-latest: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Retrieve current Date Time in EST | |
shell: bash | |
run: echo "START_TIME=$(TZ=":America/New_York" date -R|sed 's/.....$//')" >> $GITHUB_ENV | |
- name: Current datetime - ${{ env.START_TIME }} | |
run: echo ${{ env.START_TIME }} | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- if: ${{ github.event.pull_request.merged != true && contains('["ghiscoding"]', github.actor) != true }} | |
name: Exit early when current actor is not allowed to push new release | |
run: | | |
echo "Error: Your GitHub username (${{ github.actor }}) is not on the allowed list of admins for this workflow" | |
exit 1 | |
- name: Set NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org/' | |
node-version: 20 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Run yarn install dependencies | |
run: yarn --frozen-lockfile | |
- name: 🧪 Dry-Run - GitHub Release | |
if: ${{ inputs.dryrun == true }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
npm whoami | |
npx release-it --ci --dry-run | |
- name: OTP | |
if: ${{ inputs.dryrun != true }} | |
uses: step-security/wait-for-secrets@v1 | |
id: wait-for-secrets | |
with: | |
secrets: | | |
OTP: | |
name: 'OTP to publish package' | |
description: 'OTP from authenticator app' | |
- name: GitHub Release 🏷️ / NPM Publish 📦 | |
if: ${{ inputs.dryrun != true }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
npm whoami | |
npx release-it --ci --npm.otp=${{ steps.wait-for-secrets.outputs.OTP }} | |
- name: Website Dev Build | |
if: ${{ inputs.dryrun != true }} | |
run: yarn build:demo | |
# deploy (re-publish) GitHub demo page with a Prod build but only when merging to "master" branch | |
# and the commit message contains the text "chore: release" | |
- name: Deploy to gh-pages | |
if: ${{ inputs.dryrun != true }} | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./website |