From 9c5ada8e2bcfe62904c7f8fe3e426b2798d2d4fc Mon Sep 17 00:00:00 2001 From: fkolwa Date: Fri, 7 Oct 2022 15:06:35 +0200 Subject: [PATCH] Test python downgrade --- .github/workflows/container_release.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/container_release.yaml b/.github/workflows/container_release.yaml index 292ce993..46abff31 100644 --- a/.github/workflows/container_release.yaml +++ b/.github/workflows/container_release.yaml @@ -14,6 +14,15 @@ jobs: runs-on: ubuntu-latest name: Setup rhelocator steps: + - name: Set up Python 3.8.10 + uses: actions/setup-python@v4 + with: + python-version: 3.8.10 + + - name: Get full Python version + id: full-python-version + run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") + - uses: robinraju/release-downloader@v1.5 with: latest: true