Skip to content

Commit

Permalink
fix publish again
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Jul 2, 2024
1 parent 9245921 commit c54e090
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- { os: ubuntu-22.04, compiler: clang-15 }
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -22,6 +27,8 @@ jobs:
run: conan remote add --index 0 odr https://artifactory.opendocument.app/artifactory/api/conan/conan
- name: conan login
run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }}
- name: conan config
run: conan config install .github/config/${{ matrix.config.os }}-${{ matrix.config.compiler }}/conan

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

0 comments on commit c54e090

Please sign in to comment.