From fb725170f494f5ba0766cc4dfc598fb0949ff3cc Mon Sep 17 00:00:00 2001 From: Gustavo Maronato Date: Sat, 26 Aug 2023 11:49:00 -0300 Subject: [PATCH] stop building arm for now --- .github/workflows/build.yml | 33 +++++++++++++-------------------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b7d9a83..d092623 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,36 +4,31 @@ name: Build on: push: branches: - - 'main' + - "main" tags: - - 'v*' + - "v*" pull_request: branches: - - 'main' + - "main" jobs: build: runs-on: ubuntu-latest steps: - - - # Get the repository's code + - # Get the repository's code name: Checkout uses: actions/checkout@v2 - - - # https://github.com/vegardit/docker-gitea-act-runner/issues/23 + - # https://github.com/vegardit/docker-gitea-act-runner/issues/23 name: Fix docker sock permissions run: sudo chmod 666 /var/run/docker.sock - - - # https://github.com/docker/setup-qemu-action + - # https://github.com/docker/setup-qemu-action name: Set up QEMU uses: docker/setup-qemu-action@v1 - - - # https://github.com/docker/setup-buildx-action + - # https://github.com/docker/setup-buildx-action name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 - - - # https://github.com/docker/login-action + - # https://github.com/docker/login-action name: Log in to the Container registry uses: docker/login-action@v2 with: @@ -44,8 +39,7 @@ jobs: # Gitea is having issues with that. For now, this is a manually created # token available user-wise, with the "package:write" permission. password: ${{ secrets.PACKAGE_WRITE_TOKEN }} - - - # https://github.com/docker/metadata-action + - # https://github.com/docker/metadata-action # Generate tags and labels for the image # according to the commit and the branch name: Docker meta @@ -60,8 +54,7 @@ jobs: type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - - - # httos://github.com/actions/cache + - # httos://github.com/actions/cache name: Configure cache uses: actions/cache@v3 with: @@ -73,13 +66,13 @@ jobs: key: ${{ runner.os }}-build- restore-keys: | ${{ runner.os }}-build- - - - # https://github.com/docker/build-push-action + - # https://github.com/docker/build-push-action name: Build and push uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64,linux/arm64 + # platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}