Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to '.github/workflows/release.yaml')
| -rw-r--r-- | .github/workflows/release.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2693e08cd4..563778ed68 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -162,12 +162,12 @@ jobs: - run: npm ci working-directory: editors/code - - name: Publish Extension (release) + - name: Package Extension (release) if: github.ref == 'refs/heads/release' run: npx vsce package -o "../../dist/rust-analyzer-alpine-x64.vsix" --target alpine-x64 working-directory: editors/code - - name: Publish Extension (nightly) + - name: Package Extension (nightly) if: github.ref != 'refs/heads/release' run: npx vsce package -o "../../dist/rust-analyzer-alpine-x64.vsix" --target alpine-x64 --pre-release working-directory: editors/code |