Deb Release Pipeline #73
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
# WARNING: DO NOT EDIT! | |
# | |
# This file was generated by plugin_template, and is managed by it. Please use | |
# './plugin-template --github pulp_deb' to update this file. | |
# | |
# For more info visit https://github.com/pulp/plugin_template | |
--- | |
name: Deb Release Pipeline | |
on: | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: "pulp_deb" | |
jobs: | |
build-artifacts: | |
runs-on: "ubuntu-latest" | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
path: "pulp_deb" | |
token: ${{ secrets.RELEASE_TOKEN }} | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.11" | |
- name: "Install python dependencies" | |
run: | | |
echo ::group::PYDEPS | |
pip install bump2version towncrier | |
echo ::endgroup:: | |
- name: "Configure Git with pulpbot name and email" | |
run: | | |
git config --global user.name 'pulpbot' | |
git config --global user.email '[email protected]' | |
- name: "Setting secrets" | |
run: | | |
python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT" | |
env: | |
SECRETS_CONTEXT: "${{ toJson(secrets) }}" | |
- name: "Tag the release" | |
run: | | |
.github/workflows/scripts/release.sh | |
shell: "bash" | |
env: | |
PY_COLORS: "1" | |
ANSIBLE_FORCE_COLOR: "1" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
GITHUB_CONTEXT: "${{ github.event.pull_request.commits_url }}" |