This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
Next vue3.4 vite5 #20
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 is a basic workflow to help you get started with Actions | |
name: publish | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Run install pnpm | |
run: npm i -g pnpm | |
- name: Run install | |
run: pnpm install --no-frozen-lockfile | |
- name: Run build | |
run: pnpm build-all | |
- name: Run test | |
run: pnpm test | |
- name: Run codecov | |
run: npx codecov --token=${{ secrets.CODECOV_TOKEN }} | |
- name: Run publish | |
run: pnpm changeset version | |
- name: Run publish | |
run: pnpm changeset publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: get version | |
run: echo "RELEASE_VERSION="v$(node ./script/version.js)"" >> $GITHUB_ENV | |
- name: echo version | |
run: echo "${{ env.RELEASE_VERSION }}" | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "rashagu" | |
git add . | |
git commit -m "[github action]: ${{ env.RELEASE_VERSION }}" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.PUSH_TOKEN }} | |
branch: ${{ github.ref }} | |
tags: true |