Skip to content

Commit

Permalink
Update conan.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Jan 1, 2021
1 parent 9311d8a commit aec4ef5
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,21 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- if: env.BPT_DISABLE_NON_MAIN_BRANCH_PUSH_BUILDS == 'true' && github.event_name == 'push' && github.ref != 'refs/heads/main'
run: exit 0
- uses: actions/checkout@v2
- if: env.BPT_DISABLE_NON_MAIN_BRANCH_PUSH_BUILDS != 'true' || github.event_name != 'push' || github.ref == 'refs/heads/main'
uses: actions/checkout@v2
with:
fetch-depth: "0"
- uses: actions/setup-python@v1
- if: env.BPT_DISABLE_NON_MAIN_BRANCH_PUSH_BUILDS != 'true' || github.event_name != 'push' || github.ref == 'refs/heads/main'
uses: actions/setup-python@v1
with:
python-version: "3.8"
- name: Install Package Tools
- if: env.BPT_DISABLE_NON_MAIN_BRANCH_PUSH_BUILDS != 'true' || github.event_name != 'push' || github.ref == 'refs/heads/main'
name: Install Package Tools
run: |
pip install git+https://github.com/bincrafters/bincrafters-package-tools@develop
conan user
- name: Generate Job Matrix
- if: env.BPT_DISABLE_NON_MAIN_BRANCH_PUSH_BUILDS != 'true' || github.event_name != 'push' || github.ref == 'refs/heads/main'
name: Generate Job Matrix
id: set-matrix
env:
splitByBuildTypes: ${{ env.splitByBuildTypes }}
Expand Down

0 comments on commit aec4ef5

Please sign in to comment.