mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-22 00:21:08 -05:00
Add workflow_dispatch
trigger for Docker builds
This commit is contained in:
parent
cf5ce177da
commit
5ded5310e7
1 changed files with 9 additions and 2 deletions
|
@ -6,7 +6,12 @@ on: # yamllint disable-line rule:truthy
|
|||
pull_request:
|
||||
push:
|
||||
branches: ["release/*", "unstable/*"]
|
||||
tags: ["*"]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: Docker image tag
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
|
@ -16,12 +21,14 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
- name: Build Docker image
|
||||
run: |
|
||||
IMAGE="ghcr.io/$GITHUB_REPOSITORY:${GITHUB_REF_NAME/'/'/'-'}"
|
||||
IMAGE="ghcr.io/$GITHUB_REPOSITORY:${DOCKER_TAG/'/'/'-'}"
|
||||
echo "IMAGE=$IMAGE" >>"$GITHUB_ENV"
|
||||
docker build . \
|
||||
--build-arg BUILDKIT_INLINE_CACHE=1 \
|
||||
--cache-from $IMAGE \
|
||||
--tag $IMAGE
|
||||
env:
|
||||
DOCKER_TAG: ${{ inputs.tag || github.ref_name }}
|
||||
- name: Log in to GHCR
|
||||
if: github.event_name != 'pull_request'
|
||||
run: >-
|
||||
|
|
Loading…
Reference in a new issue