From bd4513c71487066eba7380731b587b982c90af6f Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Wed, 4 Sep 2024 11:06:20 +0000 Subject: [PATCH] Add some attempts at container registry pushing --- .github/workflows/build_container.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build_container.yaml b/.github/workflows/build_container.yaml index 93ce8e1..548f2e9 100644 --- a/.github/workflows/build_container.yaml +++ b/.github/workflows/build_container.yaml @@ -11,9 +11,17 @@ jobs: steps: - uses: actions/checkout@master + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build docker image uses: docker/build-push-action@v5 with: context: . tags: trusted-ci:ci + push: true