diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml index 5536707..384ab58 100644 --- a/.github/workflows/build-packages.yml +++ b/.github/workflows/build-packages.yml @@ -14,10 +14,15 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - name: Checkout submodules + run: | + git submodule init + git submodule update - name: Package Binaries run: build-packages ${{github.repository}} ${{github.workspace}} --env NPM_AUTH_TOKEN ${{secrets.NPM_AUTH_PAT}} - env: - YARN_IGNORE_NODE: 1 - name: Set Variables if: startsWith(github.ref, 'refs/tags/') run: | @@ -42,4 +47,4 @@ jobs: run: update-repositories ${{github.workspace}} - name: Publish Repository if: startsWith(github.ref, 'refs/tags/') - run: publish-repo + run: publish-repo \ No newline at end of file