Use warning() method instead of warn() #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: [push, pull_request] | |
env: | |
EXPORT_DIR: exported-artifacts | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: rpm-${{ matrix.distro }} | |
container: quay.io/ovirt/buildcontainer:${{ matrix.distro }} | |
strategy: | |
matrix: | |
distro: [el8stream, el9stream] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Mark repository as safe | |
run: git config --global --add safe.directory "$(pwd)" | |
- 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 }} |