name: Build macOS on: [push] jobs: build: name: Build macOS runs-on: macos-latest steps: - name: Fix up git URLs run: echo -e '[url "https://github.com/"]\n insteadOf = "git@github.com:"' >> ~/.gitconfig shell: bash - uses: actions/checkout@v1 with: token: ${{ secrets.ACCESS_TOKEN }} submodules: true - name: "Run script" run: | export OS="mac" ./ci/build.sh shell: bash env: APPLICATION: ${{ secrets.APPLICATION }} INSTALLER: ${{ secrets.INSTALLER }} APPLE_PASS: ${{ secrets.APPLE_PASS }} APPLE_USER: ${{ secrets.APPLE_USER }} APIKEY: ${{ secrets.APIKEY }} - uses: actions/upload-artifact@v2 with: name: VirtualAnalog_Mac path: ci/bin/VirtualAnalog_Mac.zip