output only if created/removed/restored file exist. #183
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
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
name: Docker container (CentOS) | |
on: | |
- push | |
jobs: | |
verify: | |
name: Verify | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
docker_image: | |
- quay.io/centos/centos:centos7 | |
- quay.io/centos/centos:stream8 | |
uses: "./.github/workflows/reusable-verify.yml" | |
with: | |
os: ${{ matrix.os }} | |
docker_image: ${{ matrix.docker_image }} | |
package_installation_command: yum install -y git openssh-clients | |
secrets: inherit |