From 440de01f1d2323117ab8586fae985f1d81a8ab47 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sun, 27 Aug 2023 11:27:38 -0500 Subject: [PATCH] fix --- .forgejo/workflows/build.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index d29ed23..bb96a3c 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -11,20 +11,20 @@ jobs: # PASSWORD: ${{ secrets.DOCKER_PASSWORD }} steps: - uses: actions/checkout@v3 - - nix build -L .#webserver - - push-container result --repository healthchecks/webserver - - nix build -L .#smtpd - - push-container result --repository healthchecks/smtpd - - nix build -L .#sendalerts - - push-container result --repository healthchecks/sendalerts - - nix build -L .#sendreports - - push-container result --repository healthchecks/sendreports - - nix build -L .#maintenance - - push-container result --repository healthchecks/maintenance - - nix build -L .#migrate - - push-container result --repository healthchecks/migrate - - nix build -L .#static - - push-container result --repository healthchecks/static + - run: nix build -L .#webserver + - run: push-container result --repository healthchecks/webserver + - run: nix build -L .#smtpd + - run: push-container result --repository healthchecks/smtpd + - run: nix build -L .#sendalerts + - run: push-container result --repository healthchecks/sendalerts + - run: nix build -L .#sendreports + - run: push-container result --repository healthchecks/sendreports + - run: nix build -L .#maintenance + - run: push-container result --repository healthchecks/maintenance + - run: nix build -L .#migrate + - run: push-container result --repository healthchecks/migrate + - run: nix build -L .#static + - run: push-container result --repository healthchecks/static # - run: nix build -L .#default # - run: echo -n "${PASSWORD}" | podman login --username "${USERNAME}" --password-stdin "${REGISTRY}"