Publish by @kurone-kito #9
Workflow file for this run
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 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: 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: 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 |