♻️ Do not EXPOSE
ports 80
and 443
by default as they can be customized
#143
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: Latest Changes | |
on: | |
pull_request_target: | |
branches: | |
- master | |
types: | |
- closed | |
workflow_dispatch: | |
inputs: | |
number: | |
description: PR number | |
required: true | |
jobs: | |
latest-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
with: | |
# To allow latest-changes to commit to master | |
token: ${{ secrets.UVICORN_GUNICORN_DOCKER_LATEST_CHANGES }} | |
- uses: docker://tiangolo/latest-changes:0.3.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |