This commit is contained in:
parent
580fd37c3f
commit
be3df014b7
3 changed files with 2 additions and 12 deletions
|
@ -32,7 +32,7 @@ jobs:
|
|||
- name: construct pkglists
|
||||
run: make && rm private-key.pem public-key.pem
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: pkg-lists
|
||||
path: pkgs/*.txt
|
||||
|
|
|
@ -189,16 +189,6 @@ then
|
|||
exit 2
|
||||
fi
|
||||
|
||||
if [ -f "$DECLDIR/$DECL_IMG.png" ]
|
||||
then
|
||||
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.png" ./_files/$PKGNAME.jpg
|
||||
fi
|
||||
|
||||
if [ -f "$DECLDIR/$DECL_IMG.jpg" ]
|
||||
then
|
||||
convert -resize 128x128\! "$DECLDIR/$DECL_IMG.jpg" ./_files/$PKGNAME.jpg
|
||||
fi
|
||||
|
||||
if [ -n "$PREVIEW" ]
|
||||
then
|
||||
PREVIEWSTR="\"preview=$PREVIEW\""
|
||||
|
|
|
@ -75,7 +75,7 @@ then
|
|||
PREFIX="patch"
|
||||
fi
|
||||
|
||||
PKGNAME=$(strtolower "$GPREFIX"-"$PREFIX"-"$NAME")
|
||||
PKGNAME=$(echo "$GPREFIX"-"$PREFIX"-"$NAME" | awk '{print tolower($0)}')
|
||||
mkdir -p "index/$PKGNAME"
|
||||
|
||||
if [ ! -f "./index/$PKGNAME/size" ]
|
||||
|
|
Loading…
Reference in a new issue