Update build actions.

This commit is contained in:
fewtarius 2022-07-23 17:47:25 -04:00
parent 6eb657dee8
commit 62ad86160d
No known key found for this signature in database
GPG key ID: F4AE55305D1B8C1A
2 changed files with 8 additions and 8 deletions

View file

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

View file

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