diff --git a/.github/template_gitref b/.github/template_gitref index 50128a8..b1b938d 100644 --- a/.github/template_gitref +++ b/.github/template_gitref @@ -1 +1 @@ -2021.08.26-259-ge0f38f0 +2021.08.26-261-g70d5789-dirty diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4118325..53a6467 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,18 +6,23 @@ # For more info visit https://github.com/pulp/plugin_template --- -name: Build +name: "Build" on: workflow_call: +defaults: + run: + working-directory: "pulp_gem" + jobs: build: - runs-on: ubuntu-latest + runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v4 with: fetch-depth: 1 + path: pulp_gem - uses: actions/setup-python@v4 with: python-version: "3.8" @@ -26,12 +31,12 @@ jobs: echo ::group::PYDEPS pip install packaging wheel echo ::endgroup:: - - name: Build package - run: python3 setup.py sdist bdist_wheel --python-tag py3 + - name: "Build package" + run: "python3 setup.py sdist bdist_wheel --python-tag py3" - name: 'Upload Package whl' - uses: actions/upload-artifact@v3 + uses: "actions/upload-artifact@v3" with: - name: plugin_package - path: dist/ - if-no-files-found: error + name: "plugin_package" + path: "pulp_gem/dist/" + if-no-files-found: "error" retention-days: 5 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 738b8f7..226331c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,6 +10,10 @@ name: Lint on: workflow_call: +defaults: + run: + working-directory: "pulp_gem" + jobs: lint: runs-on: ubuntu-latest @@ -18,6 +22,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 1 + path: pulp_gem - uses: actions/setup-python@v4 with: python-version: "3.8" diff --git a/template_config.yml b/template_config.yml index 3cc6668..c63cc86 100644 --- a/template_config.yml +++ b/template_config.yml @@ -1,7 +1,7 @@ # This config represents the latest values used when running the plugin-template. Any settings that # were not present before running plugin-template have been added with their default values. -# generated with plugin_template@2021.08.26-249-gca8f021 +# generated with plugin_template@2021.08.26-260-ga1550ba-dirty additional_repos: [] api_root: /pulp/ @@ -37,15 +37,11 @@ lint_requirements: true noissue_marker: '[noissue]' parallel_test_workers: 8 plugin_app_label: gem -plugin_camel: PulpGem -plugin_camel_short: Gem -plugin_caps: PULP_GEM -plugin_caps_short: GEM -plugin_dash: pulp-gem -plugin_dash_short: gem plugin_default_branch: main plugin_name: pulp_gem -plugin_snake: pulp_gem +plugins: +- app_label: gem + name: pulp_gem post_job_template: null pre_job_template: null publish_docs_to_pulpprojectdotorg: true