Update build actions.
This commit is contained in:
parent
6eb657dee8
commit
62ad86160d
2 changed files with 8 additions and 8 deletions
8
.github/workflows/build-dev.yaml
vendored
8
.github/workflows/build-dev.yaml
vendored
|
@ -51,10 +51,10 @@ jobs:
|
|||
- name: Build World
|
||||
run: |
|
||||
set -e
|
||||
export CUSTOM_VERSION="${{ steps.version.outputs.version }}"
|
||||
export DOCKER_WORK_DIR="/work"
|
||||
export DOCKER_EXTRA_OPTS="-v /buildroot:/buildroot"
|
||||
export PYTHON_EGG_CACHE="${DOCKER_WORK_DIR}/.egg_cache"
|
||||
CUSTOM_VERSION="${{ steps.version.outputs.version }}" \
|
||||
DOCKER_WORK_DIR="/work" \
|
||||
DOCKER_EXTRA_OPTS="-v /buildroot:/buildroot" \
|
||||
PYTHON_EGG_CACHE="${DOCKER_WORK_DIR}/.egg_cache" \
|
||||
make docker-world
|
||||
- name: Create dev release as draft at first to hide during uploads
|
||||
if: github.event.action == 'release-dev'
|
||||
|
|
8
.github/workflows/build-main.yaml
vendored
8
.github/workflows/build-main.yaml
vendored
|
@ -59,10 +59,10 @@ jobs:
|
|||
- name: Build World
|
||||
run: |
|
||||
set -e
|
||||
export CUSTOM_VERSION="${{ steps.version.outputs.version }}"
|
||||
export DOCKER_WORK_DIR="/work"
|
||||
export DOCKER_EXTRA_OPTS="-v /buildroot:/buildroot"
|
||||
export PYTHON_EGG_CACHE="${DOCKER_WORK_DIR}/.egg_cache"
|
||||
CUSTOM_VERSION="${{ steps.version.outputs.version }}" \
|
||||
DOCKER_WORK_DIR="/work" \
|
||||
DOCKER_EXTRA_OPTS="-v /buildroot:/buildroot" \
|
||||
PYTHON_EGG_CACHE="${DOCKER_WORK_DIR}/.egg_cache" \
|
||||
make docker-world
|
||||
- name: Create release as draft at first to hide during uploads
|
||||
if: github.event.action == 'release-main'
|
||||
|
|
Loading…
Reference in a new issue