22 Zeilen
290 B
Makefile
22 Zeilen
290 B
Makefile
format:
|
|
black .
|
|
isort .
|
|
|
|
changelog:
|
|
antsibull-changelog generate
|
|
|
|
docs: format
|
|
update-doc
|
|
|
|
clean-dist:
|
|
rm -rf dist
|
|
|
|
hatch-release:
|
|
hatch build
|
|
|
|
galaxy-release: clean-dist changelog
|
|
ansible-galaxy collection build --output-path dist
|
|
|
|
upload: galaxy-release hatch-release
|
|
./upload.sh
|