Skip to content

Commit

Permalink
add build dir and change name
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Mar 28, 2024
1 parent a39640a commit 069c190
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/cmake-multi-linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake on multiple platforms
name: linux gcc + clang

on:
push:
Expand Down Expand Up @@ -37,6 +37,14 @@ jobs:
steps:
- uses: actions/checkout@v3


- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
# - name: setup nasm windows
# if: runner.os == 'Windows'
Expand Down

0 comments on commit 069c190

Please sign in to comment.