From 757ae0dfdab8b9f3883543bba529262050b56696 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Fri, 2 Feb 2024 13:27:08 -0500 Subject: [PATCH] Trying To Fix DNS To Use My Internal DNS --- .forgejo/workflows/demo.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index f91571d..bae468a 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -14,15 +14,15 @@ jobs: runs-on: docker container: image: node:21-alpine + dns: + - 10.41.10.1 steps: - name: Install docker shell: /bin/ash -e {0} run: apk add --update docker git - - name: Print Some Debugging Info - shell: /bin/ash -e {0} - run: uname -m - - name: Check out the repo - uses: https://github.com/actions/checkout@v4 + # - name: Print Some Debugging Info + # shell: /bin/ash -e {0} + # run: uname -m - name: Set up QEMU (Do I need this?) uses: https://github.com/docker/setup-qemu-action@v3 - name: Set up Docker Buildx @@ -33,6 +33,8 @@ jobs: registry: "forgejo.merr.is" username: ${{ github.actor }} password: ${{ secrets.actions_token }} + - name: Check out the repo + uses: https://github.com/actions/checkout@v4 - name: Build and push the image uses: https://github.com/docker/build-push-action@v5 with: