diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 49ee2f4..8d85d25 100755 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -6,7 +6,6 @@ on: - main jobs: - release_tag: runs-on: ubuntu-latest steps: @@ -14,7 +13,9 @@ jobs: uses: actions/checkout@v4 - name: Install jq - run: apt-get update && apt-get upgrade && apt-get install -y jq + run: | + apt-get update + apt-get install -y jq - name: Get latest release and create new release shell: bash @@ -52,11 +53,13 @@ jobs: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }} - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + #- name: Set up QEMU + # uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + with: + endpoint: tcp://forgejo-docker-in-docker-1:2375 - name: Build and push uses: docker/build-push-action@v5