Action workflows now define the secrets they need to be passed.

This commit is contained in:
Geoff Taylor 2021-10-16 13:09:37 +01:00
parent 91cd86a6af
commit 7f3071eb29
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,11 @@ name: Publish to Docker
on:
workflow_call:
secrets:
DOCKER_HUB_USERNAME:
required: true
DOCKER_HUB_ACCESS_TOKEN:
required: true
workflow_dispatch:
jobs:

View File

@ -2,6 +2,9 @@ name: Publish to Pypi
on:
workflow_call:
secrets:
PYPI_TOKEN:
required: true
workflow_dispatch:
jobs: