Skip to content

Commit

Permalink
DevOps: Fix the CD workflow
Browse files Browse the repository at this point in the history
The conditional of the `validate-release-tag` job was never matched
since it contained a type on the organization using `circus-test`
instead of `circus-tent`. The `ubuntu` job also always installed Python
3.9 despite using a matrix of various versions.
  • Loading branch information
sphuber committed Nov 18, 2022
1 parent fafe0f6 commit 14d9011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

validate-release-tag:

if: github.repository == 'circus-test/circus'
if: github.repository == 'circus-tent/circus'
runs-on: ubuntu-20.04

steps:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: ${{ matrix.python-version }}

- name: Install system dependencies
run: |
Expand Down

0 comments on commit 14d9011

Please sign in to comment.