From 83d2d19b3726d6460107c9d6db258343b7e68990 Mon Sep 17 00:00:00 2001 From: Allison Thackston <73732028+althack@users.noreply.github.com> Date: Thu, 30 Jul 2026 17:55:42 -0700 Subject: [PATCH] Validate releases during dry runs --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b7e3ac4..d963ca0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -110,10 +110,10 @@ jobs: } >> "$GITHUB_OUTPUT" - name: "Publish Features" - if: ${{ steps.settings.outputs.dry_run != 'true' }} uses: devcontainers/action@v1 with: - publish-features: "true" + publish-features: ${{ steps.settings.outputs.dry_run != 'true' }} + validate-only: ${{ steps.settings.outputs.dry_run == 'true' }} base-path-to-features: "./features/src" disable-repo-tagging: "true" @@ -121,10 +121,10 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: "Publish Templates" - if: ${{ steps.settings.outputs.dry_run != 'true' }} uses: devcontainers/action@v1 with: - publish-templates: "true" + publish-templates: ${{ steps.settings.outputs.dry_run != 'true' }} + validate-only: ${{ steps.settings.outputs.dry_run == 'true' }} base-path-to-templates: "./templates/src" disable-repo-tagging: "true"