From f68cab588c9501d9aa01deda864fc2c9d5bbaf13 Mon Sep 17 00:00:00 2001 From: Charles Titus Date: Wed, 20 Dec 2023 13:11:50 -0500 Subject: [PATCH] fixed order of buildah login command --- .github/workflows/push_images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push_images.yml b/.github/workflows/push_images.yml index 8749c89..fcddcfa 100644 --- a/.github/workflows/push_images.yml +++ b/.github/workflows/push_images.yml @@ -15,8 +15,8 @@ jobs: uses: actions/checkout@v4 - name: Authenticate to ghcr - run: echo ${{ secrets.GITHUB_TOKEN }} | buildah login ghcr.io --username ${{ github.actor }} --password-stdin - + run: echo ${{ secrets.GITHUB_TOKEN }} | buildah login --username ${{ github.actor }} --password-stdin ghcr.io + - name: Run build script run: bash buildah_scripts/build.sh