fine... package lock... #7
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
rebuild: | |
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: Build | |
run: | | |
npm i -g pnpm@v6 | |
pnpm i --shamefully-hoist --force | |
pnpm run build-prod | |
- name: Upload built-dist | |
uses: actions/upload-artifact@v3.1.1 | |
with: | |
name: built-dist | |
path: dist | |
- name: Checkout to build | |
uses: actions/checkout@v3 | |
with: | |
ref: build | |
- name: Clean | |
run: rm -rf dist/* | |
- name: Download built-dist | |
uses: actions/download-artifact@v3.0.1 | |
with: | |
name: built-dist | |
path: dist/ | |
- name: Commit | |
uses: EndBug/add-and-commit@v9.1.1 | |
with: | |
message: "Build" | |
committer_name: GitHub Actions | |
committer_email: actions@github.com |