[CTOR-151] fix delivery (#4774)
This commit is contained in:
parent
c3b75fe62a
commit
8958c7f6d5
|
@ -20,6 +20,10 @@ inputs:
|
|||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Remove previously delivered DEBs
|
||||
run: rm -f ./*.deb
|
||||
shell: bash
|
||||
|
||||
- name: Use cache DEB files
|
||||
uses: actions/cache/restore@v3
|
||||
with:
|
||||
|
|
|
@ -20,6 +20,10 @@ inputs:
|
|||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Remove previously delivered RPMs
|
||||
run: rm -f ./*.rpm
|
||||
shell: bash
|
||||
|
||||
- name: Use cache RPM files
|
||||
uses: actions/cache/restore@v3
|
||||
with:
|
||||
|
@ -48,6 +52,7 @@ runs:
|
|||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf noarch x86_64
|
||||
mkdir noarch x86_64
|
||||
|
||||
for FILE in $FILES; do
|
||||
|
|
Loading…
Reference in New Issue