We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5218181 commit 2f891d0Copy full SHA for 2f891d0
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: Build Canary
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ paths-ignore:
7
+ - '**.md'
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ name: Build
13
+ runs-on: self-hosted
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
21
+ - name: Build
22
+ shell: powershell
23
+ run: |
24
+ .\Packaging\Build.ps1 -Mode Canary
25
0 commit comments