From f38cd6d8615d266a13b5e0fcd2c975f3e2de89bd Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Wed, 6 Nov 2024 14:01:02 +0530 Subject: [PATCH] Test --- .gitea/workflows/deploy-frontend.yaml | 19 ++++++++++--------- packages/deployer/deploy-frontend.sh | 4 ++++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/deploy-frontend.yaml b/.gitea/workflows/deploy-frontend.yaml index faea2fb8..723590b2 100644 --- a/.gitea/workflows/deploy-frontend.yaml +++ b/.gitea/workflows/deploy-frontend.yaml @@ -4,10 +4,11 @@ on: push: branches: - main + - '*' env: - REGISTRY_USER_KEY: ${{ secrets.REGISTRY_USER_KEY }} - REGISTRY_BOND_ID: ${{ secrets.REGISTRY_BOND_ID }} + REGISTRY_USER_KEY: example-user-key #${{ secrets.REGISTRY_USER_KEY }} + REGISTRY_BOND_ID: example-bond-id # ${{ secrets.REGISTRY_BOND_ID }} DEPLOYER_LRN: lrn://vaasl-provider/deployers/webapp-deployer-api.apps.vaasl.io AUTHORITY: laconic-deploy @@ -27,14 +28,14 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Download yarn - run: | - curl -fsSL -o /usr/local/bin/yarn https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js - chmod +x /usr/local/bin/yarn + # - name: Download yarn + # run: | + # curl -fsSL -o /usr/local/bin/yarn https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js + # chmod +x /usr/local/bin/yarn - - name: Install dependencies - run: | - yarn install + # - name: Install dependencies + # run: | + # yarn install - name: Set up environment run: | diff --git a/packages/deployer/deploy-frontend.sh b/packages/deployer/deploy-frontend.sh index 6365ada2..45229ef0 100755 --- a/packages/deployer/deploy-frontend.sh +++ b/packages/deployer/deploy-frontend.sh @@ -5,6 +5,10 @@ echo "Using REGISTRY_BOND_ID: $REGISTRY_BOND_ID" echo "Using DEPLOYER_LRN: $DEPLOYER_LRN" echo "Using AUTHORITY: $AUTHORITY" +cat config.yml + +exit 0 + # Repository URL REPO_URL="https://git.vdb.to/cerc-io/snowballtools-base"