From 527dd04fa35fa9f08f7852b8c4332a202fcf314a Mon Sep 17 00:00:00 2001 From: Konst Date: Mon, 1 Jul 2024 14:13:01 +0300 Subject: [PATCH] Removed GH build workflow --- .github/workflows/build.yml | 50 ------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 0b67968..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Build -on: - push: - branches: - - 'master' - tags: - - 'v*.*.*' - pull_request: - branches: - - 'master' - -jobs: - build: - name: Build - runs-on: ubuntu-latest - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: true - DOCKER_REGISTRY: ghcr.io - DOCKER_IMAGE_NAME: ${{ github.repository }} - steps: - - name: Check out the repo - uses: actions/checkout@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Log in to the registry - uses: docker/login-action@v1 - with: - registry: ${{ env.DOCKER_REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - # Cardinal - - - name: Cardinal image tags & labels - id: meta-cardinal - uses: docker/metadata-action@v3 - with: - images: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}-cardinal - - - name: Cardinal image build & push - uses: docker/build-push-action@v2 - with: - context: ./cardinal - push: true - cache-from: type=gha - cache-to: type=gha,mode=max - tags: ${{ steps.meta-cardinal.outputs.tags }} - labels: ${{ steps.meta-cardinal.outputs.labels }}