diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8e5d93a..a033799c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,7 @@ name: Build on: [push, pull_request] +env: + DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer # fix issue with macos 10.13.x jobs: build: name: Build on ${{ matrix.vm }} @@ -28,6 +30,11 @@ jobs: id: build run: | make dist + - name: Upload artifacts + uses: actions/upload-artifact@v2 + with: + name: istanbul-${{ matrix.vm }} + path: build/bin/istanbul notify: name: Notify Slack needs: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eae2e658..8c8796a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,7 @@ on: - 'v*' env: BINTRAY_PACKAGE: istanbul + DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer # fix issue with macos 10.13.x jobs: build: name: Build on ${{ matrix.vm }}