diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 1a76f9cbc781759020a65df22cabc9c75df4e73a..4d36984de2ad7ca1b7518e36c9fcc37f5f09a9ad 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -57,6 +57,4 @@ jobs: with: go-version: 1.16 - name: Build Images - run: make dev-images - - name: Push Images - run: make docker-push \ No newline at end of file + run: make build \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9c10f0ef7f2561c5e6a092ea61f88065fb60a33c..33ef1e82d719062ff8980330fda512756c2b4079 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -66,8 +66,6 @@ jobs: - name: Build and push id: docker_build uses: docker/build-push-action@v2 - env: - TARGET: ${{ matrix.target }} with: builder: ${{ steps.buildx.outputs.name }} context: ./ @@ -76,7 +74,7 @@ jobs: tags: ${{ steps.prep.outputs.tags }} cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache - target: $TARGET + target: ${{ matrix.target }} - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} \ No newline at end of file