diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c0c8e4b..9df9874 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -80,15 +80,16 @@ jobs: npx vsce package --target ${{ matrix.platarch }} -o ${{ steps.set-version.outputs.name }}.vsix - name: Upload package uses: actions/upload-artifact@v4 - if: (github.event_name != 'release') with: name: ${{ steps.set-version.outputs.name }}.vsix path: ${{ steps.set-version.outputs.name }}.vsix + retention-days: 30 - name: Upload metadata uses: actions/upload-artifact@v4 if: matrix.platarch == 'linux-x64' with: name: meta + retention-days: 1 path: meta.version beta: runs-on: ubuntu-latest @@ -157,6 +158,7 @@ jobs: uses: actions/checkout@v4 with: ref: master + token: ${{ secrets.BUMP_VERSION_TOKEN }} - name: Download metadata uses: actions/download-artifact@v4 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 21675a9..9c46ce3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.1.1 (02-Jan-2025) +- Fix release CI. + ## 0.1.0 (02-Jan-2025) - Simplify connection workflow (#14). diff --git a/package.json b/package.json index 39f5e53..6df44b1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "iris-jupyter-server", "displayName": "Jupyter Server Proxy for InterSystems IRIS", "description": "Run a local Jupyter Server acting as a proxy for InterSystems IRIS servers defined in InterSystems Server Manager", - "version": "0.1.0-SNAPSHOT", + "version": "0.1.1-SNAPSHOT", "preview": true, "publisher": "intersystems-community", "icon": "images/logo.png",