diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 5dc8c78..4a44ae7 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,7 +10,12 @@ concurrency: cancel-in-progress: false env: - GITOPS_REPO: https://github.com/FIWARE-Ops/fiware-gitops/tree/master/aws + # Repo containing participant connector values file in respective namespace folder + #GITOPS_REPO: https://github.com/FIWARE-Ops/fiware-gitops/tree/master/aws + GITOPS_REPO: https://raw.githubusercontent.com/FIWARE-Ops/fiware-gitops/master/aws + + # Directory for each participant containing connector values file + VALUES_DIR: data-space-connector jobs: @@ -18,6 +23,7 @@ jobs: runs-on: ubuntu-latest + # Deployment for participants, must contain folder for each participant strategy: matrix: participant: ["packet-delivery-dsc"] @@ -55,4 +61,8 @@ jobs: run: | echo ${{ matrix.participant }} - + - name: Download values for participant + run: | + cd data-space-connector + wget -O values-participant.yaml ${{ env.GITOPS_REPO }}/${{ steps.branch-name.outputs.current_branch }}/${{ matrix.participant }}/${{ env.GITOPS_REPO }}/values.yaml + cat values-participant.yaml