Skip to content

Commit

Permalink
chore: adding Build and deploy VC-API prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
artursudnik committed Oct 9, 2023
1 parent 57bbeec commit 75a29de
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy-vc-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
id: env_vars
run: |
echo "Running on branch ${{ github.ref }}"
echo "::set-output name=aws_region::${{ secrets.AWS_REGION }}"
echo "::set-output name=aws_access_key_id_ssi::${{ secrets.DEV_AWS_ACCESS_KEY_ID }}"
echo "::set-output name=aws_secret_key_ssi::${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }}"
echo "::set-output name=aws_ecr_repository_ssi::${{ secrets.DEV_ECR_REPOSITORY }}"
echo "::set-output name=aws_access_key_id_idc::${{ secrets.DEV_AWS_ACCESS_KEY_ID_IDC }}"
echo "::set-output name=aws_secret_key_idc::${{ secrets.DEV_AWS_SECRET_ACCESS_KEY_IDC }}"
echo "::set-output name=aws_ecr_repository_idc::${{ secrets.DEV_ECR_REPOSITORY_IDC }}"
echo "::set-output name=argocd_url::${{ secrets.DEV_ARGOCD_URL }}"
echo "::set-output name=argocd_username::${{ secrets.DEV_ARGOCD_USERNAME }}"
echo "::set-output name=argocd_password::${{ secrets.DEV_ARGOCD_PASS }}"
echo "aws_region=${{ secrets.AWS_REGION }} >> $GITHUB_OUTPUT"
echo "aws_access_key_id_ssi=${{ secrets.DEV_AWS_ACCESS_KEY_ID }} >> $GITHUB_OUTPUT"
echo "aws_secret_key_ssi=${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} >> $GITHUB_OUTPUT"
echo "aws_ecr_repository_ssi=${{ secrets.DEV_ECR_REPOSITORY }} >> $GITHUB_OUTPUT"
echo "aws_access_key_id_idc=${{ secrets.DEV_AWS_ACCESS_KEY_ID_IDC }} >> $GITHUB_OUTPUT"
echo "aws_secret_key_idc=${{ secrets.DEV_AWS_SECRET_ACCESS_KEY_IDC }} >> $GITHUB_OUTPUT"
echo "aws_ecr_repository_idc=${{ secrets.DEV_ECR_REPOSITORY_IDC }} >> $GITHUB_OUTPUT"
echo "argocd_url=${{ secrets.DEV_ARGOCD_URL }} >> $GITHUB_OUTPUT"
echo "argocd_username=${{ secrets.DEV_ARGOCD_USERNAME }} >> $GITHUB_OUTPUT"
echo "argocd_password=${{ secrets.DEV_ARGOCD_PASS }} >> $GITHUB_OUTPUT"

0 comments on commit 75a29de

Please sign in to comment.