diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2022-11-03 15:42:55 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2022-11-03 15:42:55 +0200 |
| commit | 6073e58e30bbe5ae0af903a73a2c0cc3a830fb0a (patch) | |
| tree | 5db775889d7782da3558722192b7dd7710639830 | |
| parent | 56c97a8351abe090f86c45a091b49ba65416a949 (diff) | |
| download | rust-6073e58e30bbe5ae0af903a73a2c0cc3a830fb0a.tar.gz rust-6073e58e30bbe5ae0af903a73a2c0cc3a830fb0a.zip | |
Allow ovsx publishing to fail
| -rw-r--r-- | .github/workflows/release.yaml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 422fe29f9d5..b070dd3406f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -257,8 +257,7 @@ jobs: - name: Publish Extension (OpenVSX, release) if: github.ref == 'refs/heads/release' && (github.repository == 'rust-analyzer/rust-analyzer' || github.repository == 'rust-lang/rust-analyzer') working-directory: ./editors/code - # token from https://dev.azure.com/rust-analyzer/ - run: npx ovsx publish --pat ${{ secrets.OPENVSX_TOKEN }} --packagePath ../../dist/rust-analyzer-*.vsix || true + run: npx ovsx publish --pat ${{ secrets.OPENVSX_TOKEN }} --packagePath ../../dist/rust-analyzer-*.vsix timeout-minutes: 2 - name: Publish Extension (Code Marketplace, nightly) @@ -269,5 +268,5 @@ jobs: - name: Publish Extension (OpenVSX, nightly) if: github.ref != 'refs/heads/release' && (github.repository == 'rust-analyzer/rust-analyzer' || github.repository == 'rust-lang/rust-analyzer') working-directory: ./editors/code - run: npx ovsx publish --pat ${{ secrets.OPENVSX_TOKEN }} --packagePath ../../dist/rust-analyzer-*.vsix || true + run: npx ovsx publish --pat ${{ secrets.OPENVSX_TOKEN }} --packagePath ../../dist/rust-analyzer-*.vsix timeout-minutes: 2 |
