From 4b251a4612bd1a65b2773f6db0b44473c3adaa98 Mon Sep 17 00:00:00 2001 From: Brian Healey Date: Thu, 23 Jul 2026 15:29:54 -0400 Subject: [PATCH 1/4] Update README.md Signed-off-by: Brian Healey Signed-off-by: Brian Healey --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ab3889e..519f285 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # dpm DPM repository + From 711b2c9f2c5e967035c3abb1410977ca03c8420c Mon Sep 17 00:00:00 2001 From: Brian Healey Date: Thu, 23 Jul 2026 15:57:41 -0400 Subject: [PATCH 2/4] publish dummy image to canton-artifacts-dev Signed-off-by: Brian Healey --- .github/workflows/ci.yaml | 35 +++++++++++++++++++++++++++++++++++ Dockerfile | 5 +++++ 2 files changed, 40 insertions(+) create mode 100644 .github/workflows/ci.yaml create mode 100644 Dockerfile diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..c159e28 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,35 @@ +name: Build and Push Docker Image + +on: + push: + +permissions: + contents: read + packages: write + +env: + IMAGE_NAME: ghcr.io/canton-artifacts-dev/temp/hello + +jobs: + docker: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: georgeorellanaDA + password: ${{ secrets.CANTON_ARTIFACTS_DEV_PAC }} + + - name: Build and push image + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: | + ${{ env.IMAGE_NAME }}:latest + ${{ env.IMAGE_NAME }}:${{ github.sha }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7d38ffc --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM nginx:alpine + +COPY index.html /usr/share/nginx/html/index.html + +EXPOSE 80 From b9c45e87f77a8d224e8b0476f81dec77c54972ef Mon Sep 17 00:00:00 2001 From: Brian Healey Date: Thu, 23 Jul 2026 15:59:09 -0400 Subject: [PATCH 3/4] dummy index.html Signed-off-by: Brian Healey --- index.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..e1d678d --- /dev/null +++ b/index.html @@ -0,0 +1,9 @@ + + + + Hello Canton Artifacts + + +

Hello Canton Artifacts!!

+ + From 84981246140b72bdb2b46b2edf6c34ff0dc73578 Mon Sep 17 00:00:00 2001 From: Brian Healey Date: Thu, 23 Jul 2026 19:15:16 -0400 Subject: [PATCH 4/4] Update ci.yaml Signed-off-by: Brian Healey --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c159e28..5aecf9a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,8 +22,8 @@ jobs: uses: docker/login-action@v3 with: registry: ghcr.io - username: georgeorellanaDA - password: ${{ secrets.CANTON_ARTIFACTS_DEV_PAC }} + username: infra-da + password: ${{ secrets.DA_INFRA_PAC }} - name: Build and push image uses: docker/build-push-action@v6