skip to Main Content

Staging deployment with Bitbucket pipeline and Azure Static Web App

I could successfully deploy my project into the production environment using the provided documentation https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/static-web-apps/bitbucket.md pipelines: branches: main: - step: name: Deploy to test deployment: test script: - pipe: microsoft/azure-static-web-apps-deploy:main variables: APP_LOCATION: '$BITBUCKET_CLONE_DIR' OUTPUT_LOCATION: '$BITBUCKET_CLONE_DIR/dist' API_TOKEN: $deployment_token​ But there are…

VIEW QUESTION

Set expiration or max-age limit for docker build –cache-from with BuildKit – PHP Versions

TL;DR: If my CI docker build instruction is something like DOCKER_BUILDKIT=1 docker build --cache-from registry.my.org/project-x/app:latest --tag registry.my.org/project-x/app:latest --tag registry.my.org/project-x/app:$CI_BUILD_NUM --build-arg BUILDKIT_INLINE_CACHE=1 --build-arg BUILD_NUM=$CI_BUILD_NUM . how can I limit the expiration or max age of the acceptable image cache so that…

VIEW QUESTION

docker image for dbt-snowflake

How can I run dbt commands within a bitbucket pipeline? What is the correct docker image that I should be using if I wanted to use dbt-snowflake? I tried fishtownanalytics/dbtand joevandyk/dbtboth: pipelines: custom: test-dbt: - step: name: 'Test' image: fishtownanalytics/dbt…

VIEW QUESTION

Partial credentials found in env, missing: AWS_SECRET_ACCESS_KEY using Bitbucket pipeline – Debian

I am getting Partial credentials found in env error while running below command. aws sts assume-role-with-web-identity --role-arn $AWS_ROLE_ARN --role-session-name build-session --web-identity-token $BITBUCKET_STEP_OIDC_TOKEN --duration-seconds 1000 I am using below AWS CLI and Python version- aws-cli/2.2.9 Python/3.8.8 Linux/5.4.92-flatcar exe/x86_64.debian.11 prompt/off I've also…

VIEW QUESTION
Back To Top
Search