We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a65d98 commit cbd17fbCopy full SHA for cbd17fb
.github/workflows/development.yaml
@@ -105,9 +105,20 @@ jobs:
105
startsWith(github.ref, 'refs/tags')
106
needs: test
107
runs-on: ubuntu-latest
108
+ strategy:
109
+ matrix:
110
+ include:
111
+ - py_ver: 3.8
112
+ distro: alpine
113
+ image: djbase
114
env:
115
+ PY_VER: ${{matrix.py_ver}}
116
+ DISTRO: ${{matrix.distro}}
117
+ IMAGE: ${{matrix.image}}
118
TWINE_USERNAME: ${{secrets.twine_username}}
119
TWINE_PASSWORD: ${{secrets.twine_password}}
120
+ DOCKER_CLIENT_TIMEOUT: "120"
121
+ COMPOSE_HTTP_TIMEOUT: "120"
122
outputs:
123
release_upload_url: ${{steps.create_gh_release.outputs.upload_url}}
124
steps:
0 commit comments