Skip to content

Commit

Permalink
Correct path when uploading manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
coro committed Dec 12, 2022
1 parent 05c2ec9 commit 037c46c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: operator-manifests
path: release-manifest/cluster-operator*.yml
path: releases/cluster-operator*.yml
retention-days: 2
if-no-files-found: fail
system_tests_local:
name: Local system tests (using KinD)
runs-on: ubuntu-latest
Expand Down Expand Up @@ -229,7 +230,7 @@ jobs:
name: operator-manifests
- name: Install Operator build
run: |
kubectl apply -f release-manifest/cluster-operator.yml
kubectl apply -f releases/cluster-operator.yml
kubectl --namespace=rabbitmq-system wait --for=condition=Available deployment/rabbitmq-cluster-operator
- name: System tests
env:
Expand Down Expand Up @@ -273,7 +274,7 @@ jobs:
name: operator-manifests
- name: Install Operator build
run: |
kubectl apply -f release-manifest/cluster-operator.yml
kubectl apply -f releases/cluster-operator.yml
kubectl --namespace=rabbitmq-system wait --for=condition=Available deployment/rabbitmq-cluster-operator
- name: System tests
env:
Expand All @@ -299,7 +300,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
release-manifest/cluster-operator.yml
release-manifest/cluster-operator-quay-io.yml
releases/cluster-operator.yml
releases/cluster-operator-quay-io.yml
generate_release_notes: true
fail_on_unmatched_files: true

0 comments on commit 037c46c

Please sign in to comment.