From cc36776084cae10a85d3cd6c433682c5aa7050be Mon Sep 17 00:00:00 2001 From: M Atif Ali Date: Tue, 22 Apr 2025 15:22:08 +0500 Subject: [PATCH] fix: update machine images on each release We were previously only building the images on `stable` releases which is a rare event and usually a `mainline` is promoted to `stable` --- .github/workflows/machine_images.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/machine_images.yaml b/.github/workflows/machine_images.yaml index 70b5db2..61fa043 100644 --- a/.github/workflows/machine_images.yaml +++ b/.github/workflows/machine_images.yaml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v3 - name: Set packer variables (repository_dispatch) - if: github.event_name == 'repository_dispatch' && github.event.client_payload.release_channel == 'stable' + if: github.event_name == 'repository_dispatch' run: | echo "PKR_VAR_coder_version=${{ github.event.client_payload.coder_version }}" >> "$GITHUB_ENV" echo "PKR_VAR_append_version=${{ github.event.client_payload.append_version }}" >> "$GITHUB_ENV"