Merge pull request #281 from lapras-inc/release-20241025160227 #64
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
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
name: npm release | |
on: | |
push: | |
branches: | |
- release | |
jobs: | |
publish-gpr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: 'yarn' | |
registry-url: https://npm.pkg.github.com/ | |
scope: '@lapras-inc' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: build node package | |
run: yarn build | |
- name: Github config | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
- name: commit dist | |
run: | | |
git add -A | |
git diff-index --quiet HEAD || git commit -m 'chore: add dist' | |
- name: Version increment | |
run: yarn release | |
- name: Get package-version | |
id: package-version | |
run: echo "::set-output name=package_version::v$(node -p "require('./package.json').version")" | |
- name: GitHub Push | |
uses: ad-m/[email protected] | |
with: | |
branch: release | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tags: true | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ steps.package-version.outputs.package_version }} | |
release_name: Release ${{ steps.package-version.outputs.package_version }} | |
- name: deploy github package registry | |
run: yarn publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Storybook deploy | |
run: yarn storybook:build && yarn storybook:deploy:ci | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |