Skip to content

Commit

Permalink
fix(ci): push release builds (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Jul 26, 2022
1 parent e587220 commit 3351693
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: ./packages/tf2-base
push: ${{ github.event_name == 'release' }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
context: ./packages/tf2-sourcemod
build-args: |
TF2_BASE_TAG=${{ needs.tf2-base.outputs.tf2-base-tag }}
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
context: ./packages/tf2-tftrue
build-args: |
TF2_SOURCEMOD_TAG=${{ needs.tf2-sourcemod.outputs.tf2-sourcemod-tag }}
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
context: ./packages/tf2-competitive
build-args: |
TF2_TFTRUE_TAG=${{ needs.tf2-tftrue.outputs.tf2-tftrue-tag }}
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
context: ./packages/tf2-mge
build-args: |
TF2_SOURCEMOD_TAG=${{ needs.tf2-sourcemod.outputs.tf2-sourcemod-tag }}
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

Expand Down Expand Up @@ -215,6 +215,6 @@ jobs:
context: ./packages/tf2-dm
build-args: |
TF2_TFTRUE_TAG=${{ needs.tf2-tftrue.outputs.tf2-tftrue-tag }}
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

0 comments on commit 3351693

Please sign in to comment.