Skip to content

Commit

Permalink
TEMP: actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MDavidson17 committed Sep 24, 2023
1 parent bffc750 commit cf55333
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ jobs:
result-encoding: string
script: |
const tags = [];
tags.push('ghcr.io/${{ github.repository }}:latest');
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version }}');
tags.push('ghcr.io/mdavidson17/topo-imagery:latest');
tags.push('ghcr.io/mdavidson17/topo-imagery:${{ steps.version.outputs.version }}');
if ("${{ steps.login-ecr.outputs.registry }}") {
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-latest');
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-${{ steps.version.outputs.version }}');
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
result-encoding: string
script: |
const tags = [];
tags.push('ghcr.io/${{ github.repository }}:latest');
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version_major }}');
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version_major_minor }}');
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version }}');
tags.push('ghcr.io/mdavidson17/topo-imagery:latest');
tags.push('ghcr.io/mdavidson17/topo-imagery:${{ steps.version.outputs.version_major }}');
tags.push('ghcr.io/mdavidson17/topo-imagery:${{ steps.version.outputs.version_major_minor }}');
tags.push('ghcr.io/mdavidson17/topo-imagery:${{ steps.version.outputs.version }}');
if ("${{ steps.login-ecr.outputs.registry }}") {
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-latest');
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-${{ steps.version.outputs.version_major }}');
Expand Down

0 comments on commit cf55333

Please sign in to comment.