Skip to content

feat: update packages #90

feat: update packages

feat: update packages #90

Workflow file for this run

name: 🚀 Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
scope: "@ahiho"
- run: yarn ci:install
env:
NODE_AUTH_TOKEN: ${{ secrets.PAT }}
- run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
yarn ci:release
env:
GH_TOKEN: ${{ secrets.PAT }}
NODE_AUTH_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}