From 56676a1ca032a093711148f19c4c86aaec905db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Bedin?= Date: Tue, 11 May 2021 12:39:15 -0600 Subject: [PATCH] Fixing GH Actions to handle the new 'config' service (#258) --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7862b47a..1ad24bb6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,6 +98,11 @@ jobs: uses: mikefarah/yq@3.3.2 with: cmd: "yq w -i --anchorName statusVersion $GITHUB_WORKSPACE/applications/values.yaml applicationVersions.status ${{ github.event.client_payload.slash_command.status }}" + - name: Update Config Release + if: ${{ github.event.client_payload.slash_command.config != null }} + uses: mikefarah/yq@3.3.2 + with: + cmd: "yq w -i --anchorName configVersion $GITHUB_WORKSPACE/applications/values.yaml applicationVersions.config ${{ github.event.client_payload.slash_command.config }}" - name: Update Resource Dispatcher Release if: ${{ github.event.client_payload.slash_command.dispatcher != null }} uses: mikefarah/yq@3.3.2