GitHub Actions: use report_name instead of variables in publish-logs #1716
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: Apache Yetus | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: [master] | |
jobs: | |
yetus: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: src | |
fetch-depth: 0 | |
- name: Yetus | |
uses: apache/yetus-test-patch-action@0.14.0 | |
with: | |
basedir: ./src | |
buildtool: nobuild | |
continuousimprovement: true | |
githubtoken: ${{ secrets.GITHUB_TOKEN }} | |
patchdir: ./out | |
reviveconfig: .revive.toml | |
- name: Store Yetus artifacts | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: 'yetus-scan' | |
path: ${{ github.workspace }}/out |