We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 147406d commit 217c77aCopy full SHA for 217c77a
.github/workflows/snapshot-vscode-extension.yml
@@ -38,6 +38,7 @@ jobs:
38
with:
39
node-version: 22
40
- name: version
41
+ id: version
42
run: |
43
cd ${{ github.workspace }}/vscode-extensions/${{ inputs.extension-name }}
44
version=$(npm pkg get version)
@@ -58,6 +59,7 @@ jobs:
58
59
echo "VSIX file to upload ${vsix_file}"
60
s3_path=snapshot/vscode-extensions/${{ inputs.extension-name }}
61
echo "S3 path: ${s3_path}"
62
+ echo "version=${{ steps.version.outputs.version }}"
63
aws s3 rm s3://$AWS_S3_BUCKET/$s3_path/ --recursive --exclude "*" --include "${{ inputs.extension-name }}-${{ steps.version.outputs.version }}*.vsix"
64
aws s3 cp ./vsix/$vsix_file s3://$AWS_S3_BUCKET/$s3_path/$vsix_file --no-progress --checksum-algorithm CRC32
65
- name: Update Nightly Builds download page
0 commit comments