Skip to content

Commit

Permalink
Upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Jun 30, 2024
1 parent 86cbcdf commit 40874db
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/cmake-mingw-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,10 @@ jobs:
run: cmake --build build

- name: Show ccache statistics
run: ccache -sv
run: ccache -sv

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Waterwall_${{ runner.os }}_${{ runner.arch }}_${{ matrix.c_compiler }}
path: ${{ steps.strings.outputs.build-output-dir }}/bin
8 changes: 8 additions & 0 deletions .github/workflows/cmake-multi-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,11 @@ jobs:
- name: Build
# Build your program with the given configuration.
run: cmake --build ${{ steps.strings.outputs.build-output-dir }}

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Waterwall_${{ runner.os }}_${{ runner.arch }}_${{ matrix.c_compiler }}
path: ${{ steps.strings.outputs.build-output-dir }}/bin


3 changes: 1 addition & 2 deletions .github/workflows/cmake-multi-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Waterwall_linux_x64_${{ matrix.c_compiler }}
name: Waterwall_${{ runner.os }}_${{ runner.arch }}_${{ matrix.c_compiler }}
path: ${{ steps.strings.outputs.build-output-dir }}/bin


6 changes: 6 additions & 0 deletions .github/workflows/cmake-multi-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,9 @@ jobs:
run: cmake --build ${{ steps.strings.outputs.build-output-dir }}


- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Waterwall_${{ runner.os }}_${{ runner.arch }}_${{ matrix.c_compiler }}
path: ${{ steps.strings.outputs.build-output-dir }}/bin

0 comments on commit 40874db

Please sign in to comment.