1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-19 14:47:46 +00:00

Oops, move reusable strings step

This commit is contained in:
Joshua Goins 2024-04-23 15:51:11 -04:00
parent 5f24ee6f27
commit e64fccc274

View file

@ -35,6 +35,12 @@ jobs:
c_compiler: cl c_compiler: cl
steps: steps:
- name: Set reusable strings
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Clone ECM - name: Clone ECM
run: | run: |
git clone https://invent.kde.org/frameworks/extra-cmake-modules.git git clone https://invent.kde.org/frameworks/extra-cmake-modules.git
@ -54,12 +60,6 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set reusable strings
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Configure CMake - name: Configure CMake
run: > run: >
cmake -B ${{ steps.strings.outputs.build-output-dir }} cmake -B ${{ steps.strings.outputs.build-output-dir }}