mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Update package download conditions in push-packagecloud.yml
This commit is contained in:
parent
6dfb58c836
commit
3d8c2ded01
1 changed files with 2 additions and 2 deletions
4
.github/workflows/push-packagecloud.yml
vendored
4
.github/workflows/push-packagecloud.yml
vendored
|
|
@ -49,12 +49,12 @@ jobs:
|
|||
run: gem install package_cloud
|
||||
# Download packages
|
||||
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
||||
if: inputs.LINUX = ubuntu*
|
||||
if: inputs.LINUX == 'ubuntu'
|
||||
with:
|
||||
name: package-${{ inputs.LINUX }}-${{ inputs.VERSION }}-${{ inputs.PACKAGE_ARCH }}
|
||||
path: /tmp/${{ inputs.LINUX }}
|
||||
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
||||
if: inputs.LINUX != 'el' && inputs.LINUX != 'el9' && inputs.LINUX != ubuntu*
|
||||
if: inputs.LINUX != 'el' && inputs.LINUX != 'el9' && inputs.LINUX != 'ubuntu'
|
||||
with:
|
||||
name: package-${{ inputs.LINUX }}-${{ inputs.PACKAGE_ARCH }}
|
||||
path: /tmp/${{ inputs.LINUX }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue