Trying again without escapes.

This commit is contained in:
fewtarius 2022-07-23 17:52:07 -04:00
parent 62ad86160d
commit 749facc4dc
No known key found for this signature in database
GPG key ID: F4AE55305D1B8C1A
2 changed files with 2 additions and 10 deletions

View file

@ -51,11 +51,7 @@ jobs:
- name: Build World
run: |
set -e
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
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'
uses: ncipollo/release-action@v1

View file

@ -59,11 +59,7 @@ jobs:
- name: Build World
run: |
set -e
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
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'
uses: ncipollo/release-action@v1