From 2e03eb4f8c4dfd2c5c7803d4e108295415b885f2 Mon Sep 17 00:00:00 2001 From: mytja Date: Wed, 6 Nov 2024 20:59:32 +0100 Subject: [PATCH] Remove Linux action --- .github/workflows/build.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4def2ba..5dec401 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,31 +3,8 @@ on: - push jobs: - build-linux: - name: Linux build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: '^1.23' - - name: Get current Go version - run: go version - - name: Get Go dependencies - run: go mod download - - name: Set env - run: go env -w GOFLAGS=-mod=mod - - name: Go get - run: go get -v . - - name: Build app - run: go build -v -o backend main.go - - uses: actions/upload-artifact@v4 - with: - name: backend-linux - path: backend docker: name: Docker build - needs: build-linux runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' steps: