Skip to content

Commit 63a3e26

Browse files
Verify fix.
1 parent cbd17fb commit 63a3e26

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

.github/workflows/development.yaml

Lines changed: 16 additions & 17 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,14 +168,13 @@ 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
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
178178
docker-compose -f docker-compose-build.yaml run \
179179
-e TWINE_USERNAME=${TWINE_USERNAME} -e TWINE_PASSWORD=${TWINE_PASSWORD} app \
180180
sh -lc "pip install twine && python -m twine upload dist/*"
181-
echo three

0 commit comments

Comments
 (0)