From d3ca7537c8d60e95d8415e002ec9157f9a9601e5 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sun, 27 Aug 2023 15:02:18 -0500 Subject: [PATCH] fix --- .forgejo/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 8ea0a40..e050d6b 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -6,12 +6,12 @@ jobs: runs-on: nixos-nix-latest env: REGISTRY: https://git.ocjtech.us/jeff - USERNAME: ${{ env.GITHUB_ACTOR }} - PASSWORD: ${{ env.GITHUB_TOKEN }} + # USERNAME: ${{ env.GITHUB_ACTOR }} + # PASSWORD: ${{ env.GITHUB_TOKEN }} steps: - run: set - uses: actions/checkout@v3 - - run: echo -n "${PASSWORD}" | docker login --username "${USERNAME}" --password-stdin "${REGISTRY}" + - run: echo -n "${GITHUB_TOKEN}" | docker login --username "${GITHUB_ACTOR}" --password-stdin "${REGISTRY}" - run: nix build -L .#webserver # - run: push-container result --repository healthchecks/webserver - run: nix build -L .#smtpd