Skip to content

Commit 5ed6f95

Browse files
authored
Test Acyion
1 parent 2048ce4 commit 5ed6f95

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

.github/workflows/publish-vscode-extension.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,40 @@ permissions:
99

1010
jobs:
1111
CreateApp:
12-
runs-on: [ ubuntu-latest ]
12+
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
18+
1819
- name: Setup Node.js
19-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2021
with:
2122
node-version: '20'
23+
2224
- name: Install dependencies
23-
run: npm install ${{ github.workspace }}/Git-to-AL-project-configurator/
25+
run: |
26+
cd ${{ github.workspace }}/Git-to-AL-project-configurator
27+
npm install
28+
2429
- name: Install vsce globally
2530
run: npm install -g vsce
26-
- name: package vsc Install
31+
32+
- name: Package VSCE
2733
run: |
28-
cd ${{ github.workspace }}/Git-to-AL-project-configurator/
34+
cd ${{ github.workspace }}/Git-to-AL-project-configurator
2935
vsce package --out ${{ github.workspace }}/GittoALprojectconfig.vsix
36+
3037
- name: Upload Build Artifacts
3138
uses: actions/upload-artifact@v4
3239
with:
33-
name: GittoALprojectconfig.vsix
34-
path: ${{ github.workspace }}/GittoALprojectconfig.vsix
35-
if-no-files-found: error
40+
name: GittoALprojectconfig.vsix
41+
path: ${{ github.workspace }}/GittoALprojectconfig.vsix
42+
if-no-files-found: error
43+
3644
- name: Upload Repository
3745
uses: stefanzweifel/git-auto-commit-action@v5
3846
with:
39-
commit_message: Update repository with new version of vsix
47+
commit_message: "Update repository with new version of vsix"
48+
file_pattern: 'GittoALprojectconfig.vsix'

0 commit comments

Comments
 (0)