Skip to content

Fix release CI #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.1 (02-Jan-2025)
- Fix release CI.

## 0.1.0 (02-Jan-2025)
- Simplify connection workflow (#14).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading