Skip to content

Commit cc36776

Browse files
authored
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`
1 parent b58e6d2 commit cc36776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/machine_images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v3
2626

2727
- name: Set packer variables (repository_dispatch)
28-
if: github.event_name == 'repository_dispatch' && github.event.client_payload.release_channel == 'stable'
28+
if: github.event_name == 'repository_dispatch'
2929
run: |
3030
echo "PKR_VAR_coder_version=${{ github.event.client_payload.coder_version }}" >> "$GITHUB_ENV"
3131
echo "PKR_VAR_append_version=${{ github.event.client_payload.append_version }}" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)