Skip to content

Commit

Permalink
Lowercase ghcr.io path (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnaab authored Mar 11, 2024
1 parent af0ee07 commit ee8c7e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Lower case registry variable
run: REGISTRY=$(echo "$VARIABLE" | tr '[:upper:]' '[:lower:]')

- name: Build container image
run: docker build . --platform linux/amd64 --target doj-demo --tag ${REGISTRY}/doj-demo:${TAG_NAME}

Expand Down
3 changes: 2 additions & 1 deletion infra/src/cloud.gov/node-astro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export class AstroService extends Construct {
new cloudfoundry.app.App(this, `${id}-app`, {
name: `${id}-app`,
space: spaceId,
dockerImage: 'ghcr.io/gsa-tts/tts-10x-atj-dev/doj-demo:latest',
//dockerImage: 'ghcr.io/gsa-tts/tts-10x-atj-dev/doj-demo:latest',
dockerImage: 'ghcr.io/gsa-tts/atj-platform/doj-demo:main',
memory: 1024,
diskQuota: 4096,
healthCheckType: 'http',
Expand Down

0 comments on commit ee8c7e4

Please sign in to comment.