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