Update platform image to 3.832.9-e6dda9a #2452
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cloud infra deployment | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'infra/**' | |
branches: | |
- 'vcptcore-*' | |
jobs: | |
gitops: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install vc-build | |
run: | | |
dotnet tool install --global VirtoCommerce.GlobalTool | |
- name: Update app | |
run: | | |
vc-build CloudEnvUpdate -CloudToken ${{ secrets.VCPTCORE_PLATFORM_TOKEN }} -ArgoConfigFile $ENV_FILE -CloudUrl https://portal.virtocommerce.cloud | |
env: | |
ENV_FILE: './infra/environments.yml' | |
ARGO_SERVER: https://argocd.govirto.com | |
TOKEN: ${{ secrets.VCPTCORE_TOKEN }} |