Skip to content

Commit 0e3d1f5

Browse files
authored
add package action (#1)
1 parent b973d1e commit 0e3d1f5

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Reusable package
2+
on:
3+
workflow_call:
4+
jobs:
5+
package:
6+
runs-on: windows-latest
7+
steps:
8+
- 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

Comments
 (0)