Beta release 0.17.6 #467
This file contains hidden or 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
name: Build .vsix release asset | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node v20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: | | |
npm i -g @vscode/vsce ovsx | |
npm ci | |
- name: Lint Extension | |
run: npm run lint | |
- name: Package Extension Debug Version | |
run: | | |
vsce package | |
for file in raspberry-pi-pico-*.vsix; do | |
mv "$file" "debug-${file%.vsix}.vsix" | |
# Exit the loop after the first detection | |
break | |
done | |
env: | |
BUILD_ENV: debug | |
- name: Package Extension Production Version | |
run: vsce package | |
env: | |
BUILD_ENV: production | |
- name: Modify package.json for OVSX | |
# ms-vscode extensions not available on OpenVSX registry, so remove dependencies | |
run: | | |
sed -i 's/"ms-vscode.*",//g' package.json | |
- name: Package Extension for OVSX | |
run: | | |
version=$(jq -r '.version' package.json) | |
vsce package -o ovsx-raspberry-pi-pico-${version}.vsix | |
env: | |
BUILD_ENV: production | |
- name: Test PAT | |
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }} | |
env: | |
VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_PAT }} | |
run: | | |
vsce verify-pat raspberry-pi | |
- name: Test OVSX PAT | |
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }} | |
run: | | |
npx ovsx verify-pat -p ${{ secrets.OPEN_VSX_PAT }} | |
- name: Get Short Commit SHA | |
run: | | |
short_sha=$(git rev-parse --short "$GITHUB_SHA") | |
echo "SHORT_SHA=${short_sha}" >> $GITHUB_ENV | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: raspberry-pi-pico-${{ env.SHORT_SHA }} | |
path: | | |
debug-raspberry-pi-pico-*.vsix | |
raspberry-pi-pico-*.vsix | |
ovsx-raspberry-pi-pico-*.vsix | |
- name: Add Release Asset | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
debug-raspberry-pi-pico-*.vsix | |
raspberry-pi-pico-*.vsix | |
ovsx-raspberry-pi-pico-*.vsix | |
- name: Publish Extension | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_PAT }} | |
run: | | |
vsce publish -i raspberry-pi-pico-*.vsix | |
- name: Publish Extension to OVSX | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
npx ovsx publish ovsx-raspberry-pi-pico-*.vsix -p ${{ secrets.OPEN_VSX_PAT }} |