This commit is contained in:
parent
09a1b0e01e
commit
ee7988d732
2 changed files with 23 additions and 4 deletions
19
.woodpecker.yaml
Normal file
19
.woodpecker.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
image: node:current-alpine
|
||||||
|
commands:
|
||||||
|
- apk add --no-cache zip curl
|
||||||
|
- npm install vite -g
|
||||||
|
- vite build
|
||||||
|
- (cd dist && zip -r ../project.zip ./*)
|
||||||
|
|
||||||
|
- 'AUTH_HEADER="Authorization: Bearer $PAGES_API_KEY"'
|
||||||
|
- API_URL=https://pages.hadeedahmad.com/pages/$(basename "$PWD")
|
||||||
|
- curl -s -w "%{http_code}" -F "zipfile=@project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200
|
||||||
|
|
||||||
|
secrets: [ PAGES_API_KEY ]
|
||||||
|
when:
|
||||||
|
- event: manual
|
||||||
|
- event: push
|
||||||
|
branch: main
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { defineConfig } from "vite";
|
import path from "path";
|
||||||
|
|
||||||
export default defineConfig({
|
export default {
|
||||||
base: "/fem-blog-preview-card/",
|
base: "/" + path.basename(process.cwd()) + "/",
|
||||||
});
|
};
|
||||||
|
|
Reference in a new issue