gray-jewelry-75640
04/25/2025, 10:26 PMpulumi up
in github actions? Works fine locally for me, but it just hangs forever until it times out in github actions:
Run pulumi/actions@v6
with:
command: up
stack-name: prod
work-dir: infrastructure/pulumi
comment-on-pr: false
comment-on-summary: false
github-token: ***
expect-no-changes: false
diff: false
target-dependents: false
refresh: false
upsert: false
remove: false
edit-pr-comment: true
color: auto
exclude-protected: false
suppress-outputs: false
suppress-progress: false
always-include-summary: false
continue-on-error: false
env:
AWS_REGION: us-east-1
ECR_REPOSITORY: lekondo/denim
AWS_DEFAULT_REGION: us-east-1
AWS_ACCESS_KEY_ID: ***
AWS_SECRET_ACCESS_KEY: ***
AWS_SESSION_TOKEN: ***
IMAGE_TAG: <redacted>
PULUMI_ACCESS_TOKEN: ***
AWS_ACCOUNT_ID: ***
APP_ENV: prod
ALLOWED_ORIGINS: <redacted>
AUTH0_DOMAIN: <redacted>
AUTH0_AUDIENCE: <redacted>
AUTH0_TENANT_DOMAIN: <redacted>
RUNPOD_API_URL: <redacted>
VERBOSE_LOGGING: false
DOMAIN_NAME: <redacted>
CLOUDFLARE_API_TOKEN: ***
Configured range:
/usr/local/bin/pulumi version
v3.163.0
warning: A new version of Pulumi is available. To upgrade from version '3.163.0' to '3.165.0', visit <https://pulumi.com/docs/install/> for manual instructions and release notes.
Pulumi version 3.163.0 is already installed on this machine. Skipping download
Logging into the Pulumi Cloud backend.
pulumi up on prod
Updating (prod)
View Live: <https://app.pulumi.com/mover/lekondo-denim/prod/updates/17>
@ Updating....
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
Downloading plugin cloudflare-6.1.1: starting
Downloading plugin aws-6.66.3: starting
@ Updating....
Downloading plugin cloudflare-6.1.1: done
Installing plugin cloudflare-6.1.1: starting
Installing plugin cloudflare-6.1.1: done
@ Updating....
.
Downloading plugin aws-6.66.3: done
Installing plugin aws-6.66.3: starting
@ Updating....
.
.
Installing plugin aws-6.66.3: done
@ Updating....
.
.
.
.
.
.
gray-jewelry-75640
04/25/2025, 10:30 PMgray-jewelry-75640
04/25/2025, 10:31 PM- name: Run Pulumi Up
uses: pulumi/actions@v6 # Use the action directly
id: pulumi-up
with:
command: up # Run pulumi up (action handles non-interactive)
stack-name: prod # Specify the stack name
work-dir: infrastructure/pulumi # Specify the working directory
pulumi-version: latest # Ensure latest Pulumi CLI is used
# Pulumi action automatically exports stack outputs
env:
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
<lots of other env vars>
many-telephone-49025
04/27/2025, 9:27 AM