mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix conditional statement in push-packagecloud.yml
This commit is contained in:
parent
1bedc4b766
commit
9835f0c13e
1 changed files with 1 additions and 1 deletions
2
.github/workflows/push-packagecloud.yml
vendored
2
.github/workflows/push-packagecloud.yml
vendored
|
|
@ -54,7 +54,7 @@ jobs:
|
|||
name: package-rhel-${{ inputs.PACKAGE_ARCH }}
|
||||
path: /tmp/${{ inputs.LINUX }}
|
||||
- uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
|
||||
if: inputs.LINUX == 'el' and inputs.VERSION == '9'
|
||||
if: inputs.LINUX == 'el' && inputs.VERSION == '9'
|
||||
with:
|
||||
name: package-rhel9-${{ inputs.PACKAGE_ARCH }}
|
||||
path: /tmp/${{ inputs.LINUX }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue