Skip to content

Publish by @kurone-kito #11

Publish by @kurone-kito

Publish by @kurone-kito #11

Workflow file for this run

name: Publish the packages
run-name: Publish by @${{ github.actor }}
on:
release:
types:
- published
permissions:
contents: read
jobs:
build:
name: The build process
runs-on: ubuntu-latest
steps:
- name: Stages the pushed branch
uses: actions/checkout@v4
- name: Pre-prepare the Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: .node-version
- name: Enable the corepack because of the Yarn berry
run: corepack enable
- name: Post-prepare the Node.js environment
uses: actions/setup-node@v4
with:
cache: ${{ !env.ACT && 'yarn' || '' }}
node-version-file: .node-version
- env:
HUSKY: 0
name: Install the dependencies
run: yarn install --inline-builds
- env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Publish the packages
run: yarn run publish