Skip to content

Commit 83dfccd

Browse files
Add env variables.
1 parent 63a3e26 commit 83dfccd

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed

.github/workflows/development.yaml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,16 @@ jobs:
105105
startsWith(github.ref, 'refs/tags')
106106
needs: test
107107
runs-on: ubuntu-latest
108-
# strategy:
109-
# matrix:
110-
# include:
111-
# - py_ver: 3.8
112-
# distro: alpine
113-
# image: djbase
108+
strategy:
109+
matrix:
110+
include:
111+
- py_ver: 3.8
112+
distro: alpine
113+
image: djbase
114114
env:
115-
# PY_VER: ${{matrix.py_ver}}
116-
# DISTRO: ${{matrix.distro}}
117-
# IMAGE: ${{matrix.image}}
115+
PY_VER: ${{matrix.py_ver}}
116+
DISTRO: ${{matrix.distro}}
117+
IMAGE: ${{matrix.image}}
118118
TWINE_USERNAME: ${{secrets.twine_username}}
119119
TWINE_PASSWORD: ${{secrets.twine_password}}
120120
DOCKER_CLIENT_TIMEOUT: "120"
@@ -168,13 +168,6 @@ jobs:
168168
- name: Publish pip release
169169
run: |
170170
export HOST_UID=$(id -u)
171-
# echo one
172-
# docker-compose -f docker-compose-build.yaml up --exit-code-from app --build
173-
# echo one_point_five
174-
# docker images
175-
# docker-compose -f docker-compose-build.yaml build
176-
# echo two
177-
# docker images
178171
docker-compose -f docker-compose-build.yaml run \
179172
-e TWINE_USERNAME=${TWINE_USERNAME} -e TWINE_PASSWORD=${TWINE_PASSWORD} app \
180173
sh -lc "pip install twine && python -m twine upload dist/*"

LNX-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# docker-compose -f LNX-docker-compose.yml --env-file LNX.env up --exit-code-from app --build
1+
# docker compose -f LNX-docker-compose.yml --env-file LNX.env up --exit-code-from app --build
22
version: '2.2'
33
x-net: &net
44
networks:

local-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# docker-compose -f local-docker-compose.yml --env-file LNX.env up --build
1+
# docker compose -f local-docker-compose.yml --env-file LNX.env up --build
22
version: '2.2'
33
x-net: &net
44
networks:

0 commit comments

Comments
 (0)