Files
base-configs/.github/workflows/publish.yml
renovate[bot] 7076b97c97 chore(deps): update actions/checkout action to v4.1.7
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-13 04:52:01 +00:00

58 lines
1.3 KiB
YAML

name: Publish
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- name: Setup Node.js Environment
uses: actions/setup-node@v4.0.2
with:
always-auth: true
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: '@ivuorinen'
- name: Cache Node Modules
uses: actions/cache@v4.0.2
id: cache
with:
path: node_modules
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: Config Git User
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Bootstrap Lerna
run: yarn lerna:bootstrap:ci
- name: Bump Versions and Publish Packages
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn lerna:version
yarn lerna:publish