From 693f840cfafaf861bb156852c50d23b9542541f5 Mon Sep 17 00:00:00 2001 From: eduardo <83775838+drauedo@users.noreply.github.com> Date: Thu, 23 Oct 2025 14:58:05 +0200 Subject: [PATCH] Update github-actions.md On the (cloud pods)[https://docs.localstack.cloud/aws/integrations/continuous-integration/github-actions/#cloud-pods] section, the steps don't contain the LocalStack token env. This will make that particular step to fail. --- .../integrations/continuous-integration/github-actions.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/content/docs/aws/integrations/continuous-integration/github-actions.md b/src/content/docs/aws/integrations/continuous-integration/github-actions.md index c39e896f..65795cd6 100644 --- a/src/content/docs/aws/integrations/continuous-integration/github-actions.md +++ b/src/content/docs/aws/integrations/continuous-integration/github-actions.md @@ -86,7 +86,8 @@ You can preserve your AWS infrastructure with Localstack in various ways. state-name: state-action: load skip-startup: 'true' - + env: + LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }} ... - name: Save the Cloud Pod @@ -95,6 +96,8 @@ You can preserve your AWS infrastructure with Localstack in various ways. state-backend: cloud-pods state-name: state-action: save + env: + LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }} ... ```