1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00
ansible-podman-collections/.github/workflows/collection-publish-dry-run.yml
dependabot[bot] fb76891c50
Bump actions/checkout from 4 to 5 (#964)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 12:23:23 +03:00

58 lines
1.8 KiB
YAML

name: Collection release and publish DRY RUN
on:
push:
paths:
- '.github/workflows/collection-publish.yml'
- '.github/workflows/collection-publish-dry-run.yml'
- 'contrib/build.py'
- 'contrib/publish-requirements.txt'
- 'contrib/publish.sh'
branches:
- main
pull_request:
paths:
- '.github/workflows/collection-publish.yml'
- '.github/workflows/collection-publish-dry-run.yml'
- 'contrib/build.py'
- 'contrib/publish-requirements.txt'
- 'contrib/publish.sh'
schedule:
- cron: 3 0 * * * # Run daily at 0:03 UTC
jobs:
publish-collection-artifact-dry-run:
name: Publish
runs-on: ${{ matrix.runner-os }}
strategy:
matrix:
runner-os:
- ubuntu-22.04
ansible-version:
- git+https://github.com/ansible/ansible.git@stable-2.15
runner-python-version:
- 3.9
steps:
- name: Check out ${{ github.repository }} on disk
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.runner-python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.runner-python-version }}
- name: Install Ansible ${{ matrix.ansible-version }}
run: |
python -m pip install virtualenv
python -m virtualenv /tmp/new-ansible
/tmp/new-ansible/bin/pip install '${{ matrix.ansible-version }}'
/tmp/new-ansible/bin/pip install -r contrib/publish-requirements.txt
- name: Generate a version from tag
run: >-
./contrib/publish.sh ${GITHUB_REF##*/}
env:
API_GALAXY_TOKEN: noreallykeyhere
GALAXY_PATH: /tmp/new-ansible/bin/ansible-galaxy
PYTHON_PATH: /tmp/new-ansible/bin/python
DRYRUN: 1