Yacd-meta/.gitea/workflows/build.yaml
liyp 3d6dafcac8
Some checks failed
Install pnpm and build / build (push) Failing after 58s
change action 6
2023-04-30 11:22:56 +08:00

35 lines
721 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 i
pnpm build
ls -la
# tar czf yacd.tar.gz ./public
- uses: actions/upload-artifact@v3
with:
path: ./public/*
name: yacd.tar.gz
if-no-files-found: error
#- uses: actions/release-action@v1
#with:
#allowUpdates: true
#tag: "v*"
#artifacts: "./yacd.tar.gz"
#token: ${{ secrets.RELEASE_KEY }}