diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 320dd3c..1064830 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,9 +12,16 @@ jobs: - uses: actions/checkout@v3 - run: set - run: nix build -L .#nixos-runner - - run: echo -n "${GITHUB_TOKEN}" | podman login --username ${GITHUB_ACTOR} --password-stdin ghcr.io + # - uses: redhat-actions/podman-login@v1 + # with: + # registry: ghcr.io/${{ github.repository_owner }} + # username: ${{ github.actor }} + # password: ${{ github.token }} + - run: echo -n "${PASSWORD}" | podman login --username ${USERNAME} --password-stdin ${REPOSITORY} env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY: ghcr.io/${{ github.repository_owner }} + USERNAME: ${{ github.actor }} + PASSWORD: ${{ github.token }} - run: podman load --input result | sed -n -e "s/Loaded image:.\\(.*\\)/loaded-image=\\1/p" >> $GITHUB_OUTPUT id: podman-load-image - run: podman images