We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2af84ab commit e0ed259Copy full SHA for e0ed259
.github/workflows/build_deps.yml
@@ -2,15 +2,14 @@ name: Build dependencies & push to artifactory
2
3
on:
4
push:
5
- branches: [ "test" ]
6
workflow_dispatch:
7
8
jobs:
9
10
build:
11
strategy:
12
matrix:
13
- os: [windows-2022]
+ os: [ubuntu-22.04, windows-2022, macos-13]
14
include:
15
- os: ubuntu-22.04
16
profile: profile_linux
@@ -45,4 +44,8 @@ jobs:
45
44
run: |
46
conan profile detect
47
conan install . -pr=${{ matrix.profile }} --build=missing
+ - name: Upload libraries
48
+ if: github.ref == 'refs/heads/main'
49
+ shell: bash
50
+ run: |
51
conan upload "*" -r swift_upload --confirm
0 commit comments