Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenruizdegauna committed Feb 5, 2024
1 parent dd04892 commit 3b6ea17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/canaries_prune.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ on:
type: choice
default: ''
options:
- ''
- linux
- windows
- 'all'
- 'linux'
- 'windows'
required: false
tag:
description: 'Tag to prune'
type: string
required: true

permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/component_canaries_prune.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:
jobs:

canaries-prune-linux:
if: ${{ inputs.PLATFORM == 'linux' || inputs.PLATFORM == '' }}
if: ${{ inputs.PLATFORM == 'linux' || inputs.PLATFORM == 'all' }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
ok=\d+\s+changed=\d+\s+unreachable=\d+\s+failed=\d+\s+skipped=\d+\s+rescued=\d+\s+ignored=\d+
canaries-prune-windows:
if: ${{ inputs.PLATFORM == 'windows' || inputs.PLATFORM == '' }}
if: ${{ inputs.PLATFORM == 'windows' || inputs.PLATFORM == 'all' }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion test/canaries/deploy_canaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
name: caos.ansible_roles.infra_agent
vars:
is_containerized: true
target_version: "{{ current_version }}"
target_version: "{{ current_version }}-rc"
display_name: "{{ inventory_hostname }}-current"

- name: install previous agent in container
Expand Down

0 comments on commit 3b6ea17

Please sign in to comment.