From 9590803e4046f41c5f88c8892f7bf9e924facb1b Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Tue, 25 Feb 2025 17:09:26 +0700 Subject: [PATCH] feat!: remove local build and use gitea instead --- .github/workflows/local-build-dev.yaml | 31 -------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/local-build-dev.yaml diff --git a/.github/workflows/local-build-dev.yaml b/.github/workflows/local-build-dev.yaml deleted file mode 100644 index d4fd90a..0000000 --- a/.github/workflows/local-build-dev.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: local-build-dev - -# Intended for local network use. -# Remote access is possible if the host has a public IP address. - -on: - workflow_dispatch: - -env: - REGISTRY: ${{ vars.DOCKER_REGISTRY }} - -jobs: - local-build-dev: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Setup Docker Buildx - uses: docker/setup-buildx-action@v2 - with: - config-inline: | - [registry."${{ env.REGISTRY }}"] - http = true - insecure = true - - name: Build and Push Docker Image - uses: docker/build-push-action@v3 - with: - context: . - platforms: linux/amd64 - push: true - tags: ${{ env.REGISTRY }}/jws/jws-backend:dev - allow: security.insecure