Skip to content

Commit 04b5b56

Browse files
committed
Don't include build artifacts in build artifacts.
1 parent 7232791 commit 04b5b56

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

.github/workflows/make.yml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,24 @@ jobs:
8080
env:
8181
PREFIX: ${{github.workspace}}
8282
run: make -j4 -C toolchain install release release-libs V=1
83+
84+
- name: Upload CEdev
85+
uses: actions/upload-artifact@v2
86+
with:
87+
name: CEdev-${{runner.os}}
88+
path: CEdev
89+
- name: Upload Libraries
90+
uses: actions/upload-artifact@v2
91+
with:
92+
name: clibs
93+
path: toolchain/clibs.8xg
94+
- name: Upload Windows Installer
95+
if: runner.os == 'Windows'
96+
uses: actions/upload-artifact@v2
97+
with:
98+
name: installer-${{runner.os}}
99+
path: toolchain\release\CEdev${{env.EXE}}
100+
83101
- name: Build Examples
84102
run: make -j4 -C ${{env.CEDEV}}/examples V=1
85103

@@ -147,22 +165,3 @@ jobs:
147165
- name: Remove Secrets
148166
if: always()
149167
run: cmake -E rm -rf secrets
150-
151-
- name: Upload CEdev
152-
uses: actions/upload-artifact@v2
153-
with:
154-
name: CEdev-${{runner.os}}
155-
path: CEdev
156-
157-
- name: Upload Libraries
158-
uses: actions/upload-artifact@v2
159-
with:
160-
name: clibs
161-
path: toolchain/clibs.8xg
162-
163-
- name: Upload Windows Installer
164-
if: runner.os == 'Windows'
165-
uses: actions/upload-artifact@v2
166-
with:
167-
name: installer-${{runner.os}}
168-
path: toolchain\release\CEdev${{env.EXE}}

0 commit comments

Comments
 (0)