diff --git a/.github/workflows/00-build.yaml b/.github/workflows/00-build.yaml index 0808cc88..8f5f05db 100644 --- a/.github/workflows/00-build.yaml +++ b/.github/workflows/00-build.yaml @@ -14,7 +14,8 @@ on: # schedule: # # Every Wednesday at midnight # - cron: '0 0 * * 3' - # + # + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -48,5 +49,8 @@ jobs: - name: Install conan run: pip install conan + - name: Detect current environmment profile + run: conan profile detect --force + - name: Build - run: conan build . -pr:a target/_profile/${{ matrix.build_type }} -b missing --name=${{ matrix.binaries }} -of ./build \ No newline at end of file + run: conan build . -pr target/_profile/${{ matrix.build_type }} -b missing --name=${{ matrix.binaries }} -of ./build \ No newline at end of file