sandbox/.github/workflows/npm-pub.yml
Yongmin Hong f78f311269
CI(GitHub Actions): use .node-version
Summary:
Ref D497. Centralize management for node version management.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: land and wait for next npm-pub release.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Tags: #npm

Differential Revision: https://issuetracker.revi.xyz/D502
2024-07-03 20:02:39 +09:00

59 lines
1.6 KiB
YAML

---
name: Publish Package to npmjs
on:
push:
tags:
- 'eslint-config@v*'
- 'prettier-config@v*'
jobs:
eslint-config:
name: 'Publish eslint-config to npm'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
if: contains(github.ref_name, 'eslint-config@')
steps:
- name: 'Checkout'
uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- name: 'Setup node.js'
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: npm
registry-url: 'https://registry.npmjs.org'
- name: 'Install dependencies'
run: npm ci
- name: 'Publish to npm'
run: npm publish --provenance --access public
working-directory: './npm/eslint-config'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
prettier-config:
name: 'Publish prettier-config to npm'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
if: contains(github.ref_name, 'prettier-config@')
steps:
- name: 'Checkout'
uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- name: 'Setup node.js'
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: npm
registry-url: 'https://registry.npmjs.org'
- name: 'Install dependencies'
run: npm ci
- name: 'Publish to npm'
run: npm publish --provenance --access public
working-directory: './npm/prettier-config'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}