diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml index 35ad6384c..43311163e 100644 --- a/.github/workflows/covector-version-or-publish.yml +++ b/.github/workflows/covector-version-or-publish.yml @@ -97,36 +97,3 @@ jobs: labels: "new release" body: | These are the updated docs from the most recent release. - - tangle: - runs-on: ubuntu-latest - needs: version-or-publish - if: needs.version-or-publish.outputs.successfulPublish == 'true' - strategy: - fail-fast: false - matrix: - package: - - name: cli.js - registryName: \@tauri-apps/cli - - name: tauri-bundler - registryName: tauri-bundler - - name: tauri-utils - registryName: tauri-utils - - name: tauri-core - registryName: tauri - - steps: - - uses: actions/checkout@v2 - - run: echo "PUBLISHED=$(jq '.${{ matrix.package.name }}.command' ${{ needs.version-or-publish.outputs.change }})" >> $GITHUB_ENV - - run: echo "PACKAGE_VERSION=$(jq '.${{ matrix.package.name }}.pkg.pkgFile.version' ${{ needs.version-or-publish.outputs.change }})" >> $GITHUB_ENV - - name: Tangle Release - if: env.PUBLISHED != 'false' && startsWith(env.PUBLISHED, 'parse error') != true && startsWith(env.PACKAGE_VERSION, 'parse error') != true - id: tangle_release - uses: iotaledger/gh-tangle-release@v0.6.2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - IOTA_SEED: ${{ secrets.IOTA_SEED }} - IOTA_NODE: "https://iotanode.us:14267" - with: - tag_name: ${{ matrix.package.name }}-v${{ env.PACKAGE_VERSION }} - comment: "Release ${{ matrix.package.name }} v${{ env.PACKAGE_VERSION }}"