Skip to content
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

Fix vsce package #185

Merged
merged 2 commits into from
Jul 23, 2024
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
16 changes: 7 additions & 9 deletions .github/workflows/github-actions-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [18]
node-version: [20]
os: [windows-latest, ubuntu-22.04] # macos-latest,
fail-fast: false

Expand All @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -40,27 +40,25 @@ jobs:
- name: Package extension
if: success()
run: |
npm install -g vsce
vsce package
npx vsce package

publish:
needs: build
runs-on: ubuntu-latest
if: success() && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v3
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: NPM Install
run: npm install

- name: Publish extension to marketplace
run: |
npm install -g @vscode/vsce
vsce publish -p $VSCE_TOKEN
npx vsce publish -p $VSCE_TOKEN
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
continue-on-error: true
6 changes: 6 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,9 @@ views/planview/out-test
views/planview/src
views/planview/test
views/planview/tsconfig.json

views/modelView/node_modules
views/modelView/src
views/modelView/test
views/modelView/tsconfig.json
views/modelView/.npmrc
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# PDDL support - What's new?

## 2.27.2

3rd party library updates.

## 2.27.1

Fixed parsing of the planning-as-a-service (and planutils) planner manifests.
Expand Down
Loading
Loading