Skip to content

Commit

Permalink
GHA: Testing new if condition for cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Feb 11, 2024
1 parent 329f295 commit 6faaa6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/platform-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ jobs:
~/.wine/drive_c/Program Files*/**/*Meta*
timeout-minutes: 20
cleanup:
if: ${{ ! github.event.inputs.artifact }}
if: not(github.event.inputs.artifact)
name: Clean-up
needs: [platform-linux]
runs-on: ubuntu-latest
steps:
- uses: geekyeggo/delete-artifact@v4
if: ${{ ! github.event.inputs.artifact }}
if: not(github.event.inputs.artifact)
with:
name: ${{ env.ARTIFACT_NAME }}

0 comments on commit 6faaa6f

Please sign in to comment.