From d46b749af0d95040b933a5dbe9cef5306926ed4c Mon Sep 17 00:00:00 2001 From: Raymond Kuiper Date: Fri, 8 Mar 2024 22:48:57 +0100 Subject: [PATCH] corrected typos --- .github/workflows/publish-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index e516e54..d7b29a9 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -9,9 +9,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Login to GHCR.io - run: echo "${{ secret.GHCR_PAT }}" | docker login --username ${{ secret.GHCR_USER }} --password-stdin ghcr.io + run: echo "${{ secrets.GHCR_PAT }}" | docker login --username ${{ secrets.GHCR_USER }} --password-stdin ghcr.io - name: Build and tag image - run: docker build . -t ghcr.io/${{ secret.GHCR_USER }}/netbox-zabbix-sync:latest + run: docker build . -t ghcr.io/${{ secrets.GHCR_USER }}/netbox-zabbix-sync:latest - name: Push image to GHCR.io - run: docker push ghcr.io/${{ secret.GHCR_USER }}/netbox-zabbix-sync:latest + run: docker push ghcr.io/${{ secrets.GHCR_USER }}/netbox-zabbix-sync:latest