the upload script now upload python and ansible packages correctly
Dieser Commit ist enthalten in:
Ursprung
e089dbc82a
Commit
8dbb67faf8
|
@ -8,6 +8,8 @@ upload(){
|
||||||
printf "uploading: %s as %s\n" "$1" "$name"
|
printf "uploading: %s as %s\n" "$1" "$name"
|
||||||
curl -u sebastian --upload-file "$1" "https://gitea.sebastian-tobie.de/api/packages/ansible/generic/${package}/${version}/$name"
|
curl -u sebastian --upload-file "$1" "https://gitea.sebastian-tobie.de/api/packages/ansible/generic/${package}/${version}/$name"
|
||||||
}
|
}
|
||||||
for file in dist/* ; do
|
for file in dist/sebastian* ; do
|
||||||
upload "$file"
|
upload "$file"
|
||||||
done
|
done
|
||||||
|
rm -f dist/sebastian*
|
||||||
|
hatch publish -r ansible
|
||||||
|
|
Laden…
In neuem Issue referenzieren