Skip to content

Commit 08706ef

Browse files
committed
Merge branch 'release-v5.2.8'
2 parents e7803b8 + 0aa0d4a commit 08706ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ jobs:
6161
6262
- name: Append 'latest' tag if release published
6363
env:
64-
GITHUB_ACTION: ${{ github.event.action }}
64+
GITHUB_EVENT_ACTION: ${{ github.event.action }}
6565
PYPI_VERSION: ${{ steps.read_version.outputs.pypi_version }}
6666
id: compose_tags
6767
run: |
6868
CONTAINER_TAGS="netfoundry/python:${PYPI_VERSION}"
69-
if [[ ${GITHUB_ACTION} == published ]]; then
69+
if [[ ${GITHUB_EVENT_ACTION} == published ]]; then
7070
CONTAINER_TAGS+=",netfoundry/python:latest"
7171
fi
72-
echo GITHUB_ACTION="${GITHUB_ACTION}"
72+
echo GITHUB_EVENT_ACTION="${GITHUB_EVENT_ACTION}"
7373
echo CONTAINER_TAGS="${CONTAINER_TAGS}"
7474
echo ::set-output name=container_tags::${CONTAINER_TAGS}
7575

0 commit comments

Comments
 (0)