Skip to content

Instantly share code, notes, and snippets.

@lAnubisl
Last active August 19, 2023 12:42
Show Gist options
  • Save lAnubisl/817dc46b63905340ad44fd9a85798fd2 to your computer and use it in GitHub Desktop.
Save lAnubisl/817dc46b63905340ad44fd9a85798fd2 to your computer and use it in GitHub Desktop.
Deployment script GitLab | FrontEnd app to Azure Storage Account
stages:
- build
- deploy
variables:
CONNECTION_STRING: $CONNECTION_STRING
stages:
- build
- deploy
build:
image: node:19.3.0
stage: build
script:
- npm install
- CI=false npm run build
artifacts:
paths:
- build/
deploy:
image: mcr.microsoft.com/azure-cli
stage: deploy
dependencies:
- build
variables:
CONNECTION_STRING: $CONNECTION_STRING
script:
az storage blob upload-batch --source $APP_PATH --destination 'www' --overwrite --connection-string $CONNECTION_STRING
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment