From 35f46c036cd776f0f823cd4cd28890a7552f07b1 Mon Sep 17 00:00:00 2001 From: Charles Titus Date: Wed, 20 Dec 2023 13:55:58 -0500 Subject: [PATCH] now using repository secrets to authenticate to ghcr with personal access token --- .github/workflows/push_images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_images.yml b/.github/workflows/push_images.yml index fcddcfa..463badd 100644 --- a/.github/workflows/push_images.yml +++ b/.github/workflows/push_images.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Authenticate to ghcr - run: echo ${{ secrets.GITHUB_TOKEN }} | buildah login --username ${{ github.actor }} --password-stdin ghcr.io + run: echo ${{ secrets.GHCR_PAT }} | buildah login --username cjtitus --password-stdin ghcr.io - name: Run build script run: bash buildah_scripts/build.sh