-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix compile_catalog not necessary
- Loading branch information
1 parent
48a1167
commit 6b51c10
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# | ||
# Copyright (C) 2020 CERN. | ||
# Copyright (C) 2020 Northwestern University. | ||
# Copyright (C) 2022 Graz University of Technology. | ||
# | ||
# invenio-imoox is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
@@ -26,10 +27,9 @@ jobs: | |
pip install setuptools wheel | ||
- name: Build package | ||
run: | | ||
python setup.py compile_catalog sdist bdist_wheel | ||
python setup.py sdist bdist_wheel | ||
- name: pypi-publish | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
|
||
password: ${{ secrets.pypi_token }} |