More drone fixes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Hamcha 2020-06-18 14:13:32 +02:00
부모 fe9375109f
커밋 4e0d101239
로그인 계정: Hamcha
GPG 키 ID: 41467804B19A3315
2개의 변경된 파일6개의 추가작업 그리고 7개의 파일을 삭제

파일 보기

@ -37,9 +37,6 @@ steps:
when:
event:
- push
branch:
exclude:
- master
depends_on:
- dependencies
@ -49,6 +46,7 @@ steps:
- yarn build
environment:
SUBPATH: /tghandbook/pr-${DRONE_PULL_REQUEST}/dist
OUTDIR: ./dist-pr
when:
event:
- pull_request
@ -61,6 +59,7 @@ steps:
- yarn build
environment:
SUBPATH: /tghandbook/latest/dist
OUTDIR: ./dist-master
when:
event:
- push
@ -95,7 +94,7 @@ steps:
from_secret: minio_access
secret_key:
from_secret: minio_secret
source: dist/**/*
source: dist-pr/**/*
target: /pr-${DRONE_PULL_REQUEST}/
path_style: true
endpoint: https://artifacts.fromouter.space
@ -113,7 +112,7 @@ steps:
from_secret: minio_access
secret_key:
from_secret: minio_secret
source: dist/**/*
source: dist-master/**/*
target: /latest/
path_style: true
endpoint: https://artifacts.fromouter.space
@ -145,4 +144,4 @@ volumes:
---
kind: signature
hmac: 1ec6e3a1d04e21c2492a33d789d04b8ea4cab5128ae91b1749d4aba74cd05e62
hmac: 8673ede880d77df3453f6785035712d4fca3ee77525b107de154c891558f10f1

파일 보기

@ -6,7 +6,7 @@ const entryFiles = Path.join(__dirname, "./index.html");
// Bundler options
const options = {
outDir: "./dist",
outDir: process.env.OUTDIR || "./dist",
outFile: "index.html",
publicUrl: process.env.SUBPATH || "/",
watch: false,