We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a246a commit 6eec056Copy full SHA for 6eec056
.github/workflows/_build-linux.yml
@@ -67,12 +67,11 @@ jobs:
67
# master
68
- name: Tag image
69
run: >
70
- for TAG in ${{ inputs.tags }};
+ for TAG in ${{ inputs.tags }} ${{ inputs.name }};
71
do
72
docker tag steamcmd:${{ inputs.name }} docker.io/${{ env.DKR_ORG }}/steamcmd:${TAG};
73
docker tag steamcmd:${{ inputs.name }} ghcr.io/${{ env.GH_ORG }}/steamcmd:${TAG};
74
done
75
- if: ${{ inputs.tags != '' }}
76
77
- name: Push image
78
run: |
0 commit comments