Skip to content

Commit 8b223b1

Browse files
committed
save artifacts
1 parent d2e6523 commit 8b223b1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/debugbuild.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ jobs:
5252
- name: Build and release
5353
run: fastforge release --name ${{ github.ref_name }}linux
5454

55+
- name: Upload build artifacts
56+
uses: actions/upload-artifact@v4
57+
with:
58+
name: dist-${{ runner.os }}
59+
path: dist/
60+
5561
MACOSIOS:
5662
if: github.ref_name == 'release'
5763
name: MacOS & iOS
@@ -84,6 +90,12 @@ jobs:
8490
- name: Build and release
8591
run: fastforge release --name ${{ github.ref_name }}macos
8692

93+
- name: Upload build artifacts
94+
uses: actions/upload-artifact@v4
95+
with:
96+
name: dist-${{ runner.os }}
97+
path: dist/
98+
8799
WINDOWS:
88100
name: Windows
89101
runs-on: windows-latest
@@ -116,3 +128,9 @@ jobs:
116128

117129
- name: Build and release
118130
run: fastforge release --name ${{ github.ref_name }}windows
131+
132+
- name: Upload build artifacts
133+
uses: actions/upload-artifact@v4
134+
with:
135+
name: dist-${{ runner.os }}
136+
path: dist/

0 commit comments

Comments
 (0)