Skip to content

Commit

Permalink
Fix github action environment handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Firefishy committed Apr 14, 2022
1 parent 501dffa commit f3ce751
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
file: Dockerfile.base
pull: true
push: true
tags: ${ORG}/github-runner-base:latest
tags: ${{ env.ORG }}/github-runner-base:latest
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
file: Dockerfile.base.ubuntu-bionic
pull: true
push: true
tags: ${ORG}/github-runner-base:ubuntu-bionic
tags: ${{ env.ORG }}/github-runner-base:ubuntu-bionic
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
file: Dockerfile.base.debian-${{ matrix.release }}
pull: true
push: true
tags: ${ORG}/github-runner-base:debian-${{ matrix.release }}
tags: ${{ env.ORG }}/github-runner-base:debian-${{ matrix.release }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
file: Dockerfile
pull: true
push: true
tags: ${ORG}/github-runner:latest
tags: ${{ env.ORG }}/github-runner:latest
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
file: Dockerfile.ubuntu-bionic
pull: true
push: true
tags: ${ORG}/github-runner:ubuntu-bionic
tags: ${{env.ORG}}/github-runner:ubuntu-bionic
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
file: Dockerfile.debian-${{ matrix.release }}
pull: true
push: true
tags: ${ORG}/github-runner:debian-${{ matrix.release }}
tags: ${{ env.ORG }}/github-runner:debian-${{ matrix.release }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
file: Dockerfile
pull: true
push: true
tags: ${ORG}/github-runner:${TAG}
tags: ${{ env.ORG }}/github-runner:${{ env.TAG }}
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
file: Dockerfile.ubuntu-bionic
pull: true
push: true
tags: ${ORG}/github-runner:${TAG}-ubuntu-bionic
tags: ${{ env.ORG }}/github-runner:${{ env.TAG }}-ubuntu-bionic
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
file: Dockerfile.debian-${{ matrix.release }}
pull: true
push: true
tags: ${ORG}/github-runner:${TAG}-debian-${{ matrix.release }}
tags: ${{ env.ORG }}/github-runner:${{ env.TAG }}-debian-${{ matrix.release }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit f3ce751

Please sign in to comment.