Skip to content

Commit

Permalink
Make conan channel 'stable' for 'main' not 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
joakimono committed Apr 15, 2024
1 parent 4f12deb commit 68d4dae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-conan-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
profile: [gcc]
compiler_version: [10, 11, 12]
with_fmus: ["with_fmus=True", "with_fmus=False"]
channel: ["${{ (github.head_ref || github.ref_name) == 'master' && 'stable' || 'testing' }}"]
channel: ["${{ (github.head_ref || github.ref_name) == 'main' && 'stable' || 'testing' }}"]
container:
image: conanio/gcc${{ matrix.compiler_version }}-ubuntu18.04
options: -u 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-conan-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
profile: [msvc17]
compiler_version: [192, 193]
with_fmus: ["with_fmus=True", "with_fmus=False"]
channel: ["${{ (github.head_ref || github.ref_name) == 'master' && 'stable' || 'testing' }}"]
channel: ["${{ (github.head_ref || github.ref_name) == 'main' && 'stable' || 'testing' }}"]
steps:
- uses: actions/checkout@v4
- name: Install prerequisites
Expand Down

0 comments on commit 68d4dae

Please sign in to comment.