Skip to content
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/[email protected]
with:
versionSpec: '5.5.x'
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
uses: gittools/actions/gitversion/[email protected]

- name: execute gitversion
id: gitversion # step id used as reference for output values
uses: gittools/actions/gitversion/[email protected]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
uses: gittools/actions/gitversion/[email protected]

- 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": "[email protected]",
"devDependencies": {
"@vscode/vsce": "^3.3.2",
"ovsx": "^0.10.1",
Expand Down
Loading