Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update publish release action #2806

Merged
merged 14 commits into from
Aug 23, 2023
Prev Previous commit
Next Next commit
Try unquoting
prryplatypus committed Aug 23, 2023

Verified

This commit was signed with the committer’s verified signature.
mloskot Mateusz Łoskot
commit e3a68a78f8611b47cd715f2d93a1b57fb30bde01
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -169,5 +169,5 @@ jobs:
BASE_IMAGE_ORG=${{ env.DOCKER_ORG_NAME }}
BASE_IMAGE_NAME=${{ env.DOCKER_BASE_IMAGE_NAME }}
BASE_IMAGE_TAG=${{ matrix.python-version }}
SANIC_PYPI_VERSION="23.6.0"
SANIC_PYPI_VERSION=23.6.0
# SANIC_PYPI_VERSION=${{ needs.generate_info.outputs.pypi-version }}
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -9,5 +9,5 @@ RUN update-ca-certificates

ARG SANIC_PYPI_VERSION

RUN pip install "sanic==${SANIC_PYPI_VERSION}"
RUN pip install sanic==${SANIC_PYPI_VERSION}
RUN apk del build-base