This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-publish.git
from dde9023 initail readme
add b18f02d adding composite actions to validate airflow packages,
providers and publish to pypi
add 31f58d1 add License
add 3d90f4a update readme
add 4b776af set persist-credentials to false
add a4da598 update regex name pattern
add 084b039 add artifact-name input
new 01190f6 Merge pull request #1 from apache/airflow-artifacts-publish
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/airflow-publish.yml | 170 +++++++++
.github/workflows/ci.yml | 41 ++
.gitignore | 2 +
README.md | 443 +++++++++++++++++++++-
artifacts/__init__.py | 17 +
artifacts/action.yml | 142 +++++++
artifacts/publish_packages_finder.py | 314 +++++++++++++++
artifacts/test_publish_packages_finder.py | 438 +++++++++++++++++++++
checksum/__init__.py | 17 +
checksum/action.yml | 64 ++++
checksum/checksum_check.py | 107 ++++++
checksum/test_checksum_check.py | 137 +++++++
init/action.yml | 56 +++
read-config/action.yml | 69 ++++
read-config/config_parser.py | 117 ++++++
read-config/release-config-schema.yml.schema.json | 214 +++++++++++
release-config.yml | 48 +++
signature/__init__.py | 17 +
signature/action.yml | 60 +++
signature/signature_check.py | 108 ++++++
signature/test_signature_check.py | 82 ++++
svn/__init__.py | 17 +
svn/action.yml | 68 ++++
svn/svn_check.py | 132 +++++++
svn/test_svn_check.py | 174 +++++++++
25 files changed, 3053 insertions(+), 1 deletion(-)
create mode 100644 .github/workflows/airflow-publish.yml
create mode 100644 .github/workflows/ci.yml
create mode 100644 .gitignore
create mode 100644 artifacts/__init__.py
create mode 100644 artifacts/action.yml
create mode 100644 artifacts/publish_packages_finder.py
create mode 100644 artifacts/test_publish_packages_finder.py
create mode 100644 checksum/__init__.py
create mode 100644 checksum/action.yml
create mode 100644 checksum/checksum_check.py
create mode 100644 checksum/test_checksum_check.py
create mode 100644 init/action.yml
create mode 100644 read-config/action.yml
create mode 100644 read-config/config_parser.py
create mode 100644 read-config/release-config-schema.yml.schema.json
create mode 100644 release-config.yml
create mode 100644 signature/__init__.py
create mode 100644 signature/action.yml
create mode 100644 signature/signature_check.py
create mode 100644 signature/test_signature_check.py
create mode 100644 svn/__init__.py
create mode 100644 svn/action.yml
create mode 100644 svn/svn_check.py
create mode 100644 svn/test_svn_check.py