We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b973d1e commit 0e3d1f5Copy full SHA for 0e3d1f5
.github/workflows/package.yml
@@ -0,0 +1,8 @@
1
+name: Package
2
+on:
3
+ push:
4
+ branches:
5
+ - 'main'
6
+jobs:
7
+ package:
8
+ uses: ./.github/workflows/reusable-package.yml
.github/workflows/reusable-package.yml
@@ -0,0 +1,16 @@
+name: Reusable package
+ workflow_call:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v3
9
+ - name: Build package
10
+ shell: pwsh
11
+ run: ./Build-Installer.ps1
12
+ - uses: actions/upload-artifact@v3
13
+ with:
14
+ name: build
15
+ path: JetBrainsMonoNF/bin/Release/*.msi
16
+ if-no-files-found: error
0 commit comments