Skip to content

chore(deps): update babel monorepo to v7.26.8 (#448) #144

chore(deps): update babel monorepo to v7.26.8 (#448)

chore(deps): update babel monorepo to v7.26.8 (#448) #144

Workflow file for this run

# .github/workflows/release.yml
name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
environment: release # 這裡要記得指定套用的環境,才能取得變數
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Run install
run: yarn install --frozen-lockfile
- name: Test
run: yarn test
- name: Build
run: yarn build
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release