Skip to content

Commit c54e090

Browse files
committed
fix publish again
1 parent 9245921 commit c54e090

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-22.04
9+
runs-on: ${{ matrix.config.os }}
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
config:
14+
- { os: ubuntu-22.04, compiler: clang-15 }
1015
steps:
1116
- name: checkout
1217
uses: actions/checkout@v4
@@ -22,6 +27,8 @@ jobs:
2227
run: conan remote add --index 0 odr https://artifactory.opendocument.app/artifactory/api/conan/conan
2328
- name: conan login
2429
run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }}
30+
- name: conan config
31+
run: conan config install .github/config/${{ matrix.config.os }}-${{ matrix.config.compiler }}/conan
2532

2633
- name: get version
2734
run: echo "VERSION=${GITHUB_REF_NAME:1}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)