yacd/.github/workflows/build.yaml
liyp 80e1596961
Some checks failed
Install pnpm and build / build (push) Failing after 3s
fix release 5
2023-04-30 17:08:12 +08:00

30 lines
589 B
YAML

name: Install pnpm and build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies and build
run: |
pnpm install --no-frozen-lockfile
pnpm build
pwd
tar czf yacd.tar.gz ./public
- name: Test
run: ls -la
- name: Release
uses: actions/release-action@latest
#if: startsWith(github.ref, 'refs/tags/')
with:
files: yacd.tar.gz