From f20b6cc0ed3bbf4efac96dc5b4bdb5a7d94748da Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 23 Feb 2025 15:27:38 -0500 Subject: [PATCH] Add validation and remove armv7 (for testing)( --- .gitea/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 7c0cd59..48616d0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -40,6 +40,11 @@ jobs: echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT + - name: Validate build configuration + uses: docker/build-push-action@v6 + with: + call: check + - name: Build and push uses: docker/build-push-action@v6 with: @@ -48,7 +53,6 @@ jobs: platforms: | linux/amd64 linux/arm64 - linux/arm/v7 push: true tags: | # replace it with your local IP and tags git.vpn.cusano.net/${{ vars.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}