From 75766153c9b93cd6c32bf2122538f3d95ea56ca3 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Fri, 2 Feb 2024 09:23:20 -0500 Subject: [PATCH] Tutorials Suggest I Don't Need Any Magic? --- .forgejo/workflows/demo.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index 1dccc7f..994ad7a 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -14,19 +14,19 @@ jobs: - name: Install docker shell: /bin/ash -e {0} run: apk add --update docker git - - name: DEBUGGING! - shell: /bin/ash -e {0} - run: which service - - name: Start docker - shell: /bin/ash -e {0} - run: /sbin/service docker start + # - name: DEBUGGING! + # shell: /bin/ash -e {0} + # run: which service + # - name: Start docker + # shell: /bin/ash -e {0} + # run: /sbin/service docker start # - name: Print Some Debugging Info # shell: /bin/ash -e {0} # run: echo ${{ github.repository }} - name: Check out the repo - uses: actions/checkout@v4 + uses: https://github.com/actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: https://github.com/docker/setup-buildx-action@v3 - name: Login to docker repo uses: docker/login-action@v3 with: @@ -34,7 +34,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.actions_token }} - name: Build and push the image - uses: docker/build-push-action@v5 + uses: https://github.com/docker/build-push-action@v5 with: push: true tags: ${{ github.server_url }}/${{ github.repository }}/${{ github.run_number }}