Skip to content

Commit

Permalink
automation: fix YAML format
Browse files Browse the repository at this point in the history
Signed-off-by: Tomáš Golembiovský <[email protected]>
Change-Id: I9e97a2863f4dda9715af8d918ae42400766329a4
  • Loading branch information
nyoxi committed Feb 1, 2022
1 parent 5aa5688 commit 60cb84b
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: CI
on: [push, pull_request]
env:
Expand All @@ -9,17 +10,17 @@ jobs:
container: quay.io/ovirt/buildcontainer:${{ matrix.distro }}
strategy:
matrix:
distro: [ el8stream, el9stream ]
distro: [el8stream, el9stream]
steps:
- name: Prepare env
run: mkdir -p ${PWD}/${EXPORT_DIR}/
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check patch
run: ./automation/check-patch.sh
- name: Upload artifacts
uses: ovirt/upload-rpms-action@v1
with:
directory: ${{ env.EXPORT_DIR }}
distro: ${{ matrix.distro }}
- name: Prepare env
run: mkdir -p ${PWD}/${EXPORT_DIR}/
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check patch
run: ./automation/check-patch.sh
- name: Upload artifacts
uses: ovirt/upload-rpms-action@v1
with:
directory: ${{ env.EXPORT_DIR }}
distro: ${{ matrix.distro }}

0 comments on commit 60cb84b

Please sign in to comment.