Skip to content

Commit 5698819

Browse files
committed
an actual fix, after some testing
1 parent b54acf8 commit 5698819

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/compile.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,15 @@ jobs:
1212
path: compiler
1313
- name: Check out repository code
1414
uses: actions/checkout@v3
15+
with:
16+
path: main
1517
- name: Compiling src.bat
1618
run: |
17-
compiler/Bat2Exe.bat src.bat
19+
compiler/Bat2Exe.bat main/src.bat
20+
mv src.exe macos-vm-installer.exe
1821
- name: Uploading artifact
1922
uses: actions/upload-artifact@v3
2023
with:
2124
name: macos-vm-installer.exe
22-
path: main/src.exe
25+
path: macos-vm-installer.exe
2326
if-no-files-found: error

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test

0 commit comments

Comments
 (0)