diff --git a/.github/workflows/build_linux.yaml b/.github/workflows/build_linux.yaml index add7416..63f3cd0 100644 --- a/.github/workflows/build_linux.yaml +++ b/.github/workflows/build_linux.yaml @@ -5,21 +5,13 @@ jobs: name: Build Linux runs-on: ubuntu-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 + - uses: actions/checkout@v3 with: token: ${{ secrets.ACCESS_TOKEN }} - submodules: true + submodules: recursive - name: "Run script" run: | - export OS="linux" ./ci/build.sh shell: bash env: APIKEY: ${{ secrets.APIKEY }} - - uses: actions/upload-artifact@v2 - with: - name: Wavetable_Linux - path: ci/bin/Wavetable_Linux.zip diff --git a/.github/workflows/build_macos.yaml b/.github/workflows/build_macos.yaml index 3355f5f..5ea43f0 100644 --- a/.github/workflows/build_macos.yaml +++ b/.github/workflows/build_macos.yaml @@ -5,16 +5,12 @@ jobs: 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 + - uses: actions/checkout@v3 with: token: ${{ secrets.ACCESS_TOKEN }} - submodules: true + submodules: recursive - name: "Run script" run: | - export OS="mac" ./ci/build.sh shell: bash env: @@ -23,7 +19,3 @@ jobs: APPLE_PASS: ${{ secrets.APPLE_PASS }} APPLE_USER: ${{ secrets.APPLE_USER }} APIKEY: ${{ secrets.APIKEY }} - - uses: actions/upload-artifact@v2 - with: - name: Wavetable_Mac - path: ci/bin/Wavetable_Mac.zip diff --git a/.github/workflows/build_windows.yaml b/.github/workflows/build_windows.yaml index 7a7eaaf..29046f2 100644 --- a/.github/workflows/build_windows.yaml +++ b/.github/workflows/build_windows.yaml @@ -5,21 +5,13 @@ jobs: name: Build Windows runs-on: windows-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 + - uses: actions/checkout@v3 with: token: ${{ secrets.ACCESS_TOKEN }} - submodules: true + submodules: recursive - name: "Run script" run: | - export OS="win" ./ci/build.sh shell: bash env: APIKEY: ${{ secrets.APIKEY }} - - uses: actions/upload-artifact@v2 - with: - name: Wavetable_Win - path: ci/bin/Wavetable_Win.zip