diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 3c41d4dc..df0a2d20 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -3,6 +3,7 @@ on: push: branches: - "main" + - "*" tags: - "*" pull_request: {} @@ -28,15 +29,15 @@ jobs: - name: Build run: make - name: Test - if: ${{ matrix.os }} != 'macOS-11' - run: echo '${{ matrix.os }}' && make test + if: matrix.os != "macOS-11" + run: echo '${{ matrix.os != "macOS-11" }}' && make test - name: vet run: go vet ./... - name: golangci-lint uses: golangci/golangci-lint-action@v3 - name: Upload vfkit artifact + if: matrix.os == "macOS-13" uses: actions/upload-artifact@v4 - if: ${{ matrix.os }} == 'macOS-13' with: name: Unsigned vfkit Universal Binary path: "./out/vfkit"