forked from ansible/galaxy_ng
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update plugin template files (ansible#2087)
* Update plugin template files. * Debug? * Debug? * Fix commit check task. * Fix yamllint errors on some workflow files. * Fix more workflow files. * This is the only way to make this work. * Twine insists on having a long_description now. * Add new required file? * Need to cd to the parent first. * Fix tdd script indexerror. No-Issue Signed-off-by: James Tanner <[email protected]>
- Loading branch information
Showing
49 changed files
with
1,011 additions
and
1,005 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[bumpversion] | ||
current_version = 4.10.0dev | ||
commit = False | ||
tag = False | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))? | ||
serialize = | ||
{major}.{minor}.{patch}.{release} | ||
{major}.{minor}.{patch} | ||
|
||
[bumpversion:part:release] | ||
optional_value = prod | ||
first_value = dev | ||
values = | ||
dev | ||
prod | ||
|
||
[bumpversion:file:./galaxy_ng/app/__init__.py] | ||
|
||
[bumpversion:file:./setup.py] | ||
|
||
# [bumpversion:file:./docs/conf.py] |
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
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
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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-251-g45d399d | ||
2021.08.26-316-g69ef1f6 |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# WARNING: DO NOT EDIT! | ||
# | ||
# This file was generated by plugin_template, and is managed by it. Please use | ||
# './plugin-template --github galaxy_ng' to update this file. | ||
# | ||
# For more info visit https://github.com/pulp/plugin_template | ||
|
||
--- | ||
name: "Build" | ||
on: | ||
workflow_call: | ||
|
||
defaults: | ||
run: | ||
working-directory: "galaxy_ng" | ||
|
||
jobs: | ||
build: | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 1 | ||
path: "galaxy_ng" | ||
- uses: "actions/setup-python@v4" | ||
with: | ||
python-version: "3.11" | ||
- name: "Install python dependencies" | ||
run: | | ||
echo ::group::PYDEPS | ||
pip install packaging twine wheel | ||
echo ::endgroup:: | ||
- name: "Build package" | ||
run: | | ||
python3 setup.py sdist bdist_wheel --python-tag py3 | ||
twine check dist/* | ||
- name: "Upload Package whl" | ||
uses: "actions/upload-artifact@v3" | ||
with: | ||
name: "plugin_package" | ||
path: "galaxy_ng/dist/" | ||
if-no-files-found: "error" | ||
retention-days: 5 |
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
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
Oops, something went wrong.