Hamcha
/
tghandbook
Arquivado
1
0
Fork 1

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

Esse commit está contido em:
Hamcha 2020-06-18 14:13:32 +02:00
commit 4e0d101239
Assinado por: Hamcha
ID da chave GPG: 41467804B19A3315
2 arquivos alterados com 6 adições e 7 exclusões

Ver arquivo

@ -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

Ver arquivo

@ -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,