Update dependency starlette to <0.33 (#196) #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Release | |
# on: | |
# workflow_run: | |
# workflows: | |
# - Run Tests | |
# types: | |
# - completed | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
# if: github.ref_type == 'tag' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: release | |
env: | |
DOCKER_BUILDKIT: 1 | |
run: | | |
docker build . \ | |
--target release \ | |
--build-arg PYPI_TOKEN=${{ secrets.PYPI_TOKEN }} \ | |
--build-arg CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }} \ | |
--build-arg GIT_SHA=${{ github.sha }} |