diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba1cb71..9d851d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: package: name: Package - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -34,23 +34,14 @@ jobs: - name: fetch all history and tags from all branches for gitversion run: git fetch --prune --unshallow - - name: DotNet Core SDK 3.1.0 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 3.1.x + - uses: actions/setup-dotnet@v4 - name: install gitversion tool - uses: gittools/actions/gitversion/setup@v0.9 - with: - versionSpec: '5.5.x' - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' + uses: gittools/actions/gitversion/setup@v3.2.0 - name: execute gitversion id: gitversion # step id used as reference for output values - uses: gittools/actions/gitversion/execute@v0.9.7 - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' + uses: gittools/actions/gitversion/execute@v3.2.0 - name: print gitversion run: | @@ -80,8 +71,8 @@ jobs: - name: upload vsix as artifact uses: actions/upload-artifact@v4 with: - name: vscode-ember-${{steps.gitversion.outputs.majorMinorPatch}}.vsix - path: ${{github.workspace}}/vscode-ember-${{steps.gitversion.outputs.majorMinorPatch}}.vsix + name: emberjs-snippets-${{steps.gitversion.outputs.majorMinorPatch}}.vsix + path: ${{github.workspace}}/emberjs-snippets-${{steps.gitversion.outputs.majorMinorPatch}}.vsix - name: create a release if: github.ref == 'refs/heads/main' diff --git a/package.json b/package.json index 3f2d8ce..3b469b8 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ember-snippets", + "name": "emberjs-snippets", "publisher": "EmberTooling", "displayName": "Ember Polaris Snippets - gjs, gts, tests, services, etc", "description": "Snippets for Ember projects for quickly generating boilerplate", @@ -18,7 +18,8 @@ "Snippets" ], "engines": { - "vscode": ">=1.0.0" + "vscode": ">=1.0.0", + "node": ">=20" }, "keywords": [ "Ember", @@ -86,6 +87,7 @@ "vs:publish:ci": "vsce publish --pat $VSCODE_TOKEN", "ov:publish:ci": "ovsx publish --pat $OPENVSX_TOKEN" }, + "packageManager": "pnpm@10.7.1", "devDependencies": { "@vscode/vsce": "^3.3.2", "ovsx": "^0.10.1",