Skip to content

Fix tooling versions #2

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 9 commits into from
Apr 12, 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
21 changes: 6 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down Expand Up @@ -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'
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -18,7 +18,8 @@
"Snippets"
],
"engines": {
"vscode": ">=1.0.0"
"vscode": ">=1.0.0",
"node": ">=20"
},
"keywords": [
"Ember",
Expand Down Expand Up @@ -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",
Expand Down
Loading