There was an error while loading. Please reload this page.
1 parent a68327c commit 2383de6Copy full SHA for 2383de6
2 files changed
.github/workflows/build-windows-exe.yml
@@ -0,0 +1,27 @@
1
+name: Build Windows EXE
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build-windows-exe:
11
+ name: Build Windows EXE
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
+ - name: Set up Ruby
18
+ uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: 3.4.7
21
+ bundler-cache: true
22
+ - name: Install dependencies
23
+ run: bundle add ocran
24
+ - name: Build Windows EXE
25
+ run: bundle exec ocran bin/tahweel-ui
26
+ - name: LS
27
+ run: ls
.github/workflows/main.yml
@@ -22,8 +22,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- with:
- persist-credentials: false
- name: Set up Ruby
28
uses: ruby/setup-ruby@v1
29
with:
0 commit comments