We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7803b8 + 0aa0d4a commit 08706efCopy full SHA for 08706ef
.github/workflows/main.yml
@@ -61,15 +61,15 @@ jobs:
61
62
- name: Append 'latest' tag if release published
63
env:
64
- GITHUB_ACTION: ${{ github.event.action }}
+ GITHUB_EVENT_ACTION: ${{ github.event.action }}
65
PYPI_VERSION: ${{ steps.read_version.outputs.pypi_version }}
66
id: compose_tags
67
run: |
68
CONTAINER_TAGS="netfoundry/python:${PYPI_VERSION}"
69
- if [[ ${GITHUB_ACTION} == published ]]; then
+ if [[ ${GITHUB_EVENT_ACTION} == published ]]; then
70
CONTAINER_TAGS+=",netfoundry/python:latest"
71
fi
72
- echo GITHUB_ACTION="${GITHUB_ACTION}"
+ echo GITHUB_EVENT_ACTION="${GITHUB_EVENT_ACTION}"
73
echo CONTAINER_TAGS="${CONTAINER_TAGS}"
74
echo ::set-output name=container_tags::${CONTAINER_TAGS}
75
0 commit comments