-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
1,508 additions
and
1,029 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,19 +11,17 @@ jobs: | |
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 17 | ||
node-version: 20 | ||
cache: "npm" | ||
cache-dependency-path: package-lock.json | ||
- name: Get release version | ||
# VSCode doesn't support pre release versions https://github.com/microsoft/vsmarketplace/issues/50#issuecomment-990764201 | ||
run: | | ||
echo "version=$(cat package.json | jq -r '.version')" >> $GITHUB_OUTPUT | ||
id: version | ||
# TypeScript set at 4.7.4 because @kubernetes/client-node 0.16.3 (and 0.17.0) breaks with version 4.8.2+ | ||
- run: npm install -g vsce [email protected] esbuild | ||
- run: mkdir -p /tmp/vscode-ext | ||
- run: | | ||
npm install | ||
|
@@ -33,7 +31,7 @@ jobs: | |
env: | ||
VSCE_PAT: ${{ secrets.VSCE_PAT }} | ||
run: vsce publish ${{ steps.version.outputs.version }} | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: vscode-ext | ||
path: | | ||
|
@@ -50,8 +48,8 @@ jobs: | |
deployments: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- uses: actions/download-artifact@v3 | ||
uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
path: /tmp/artifacts | ||
- uses: montudor/action-zip@v1 | ||
|
@@ -72,7 +70,7 @@ jobs: | |
if: github.event_name != 'workflow_dispatch' | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
# Get complete history | ||
fetch-depth: 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bump dependencies |
Oops, something went wrong.