Skip to content

Commit

Permalink
Testa valor das variaveis gh actions - vars
Browse files Browse the repository at this point in the history
  • Loading branch information
messiasdias committed Jan 16, 2024
1 parent ba8f25e commit bb68251
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_deploy_ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
- name: Install JS dependencies and Build 🔧
run: |
cd ui
echo ${{ github.VUE_APP_DEV_NAME }}
echo ${{ github.VUE_APP_BASE_URL }}
echo ${{ github.VUE_APP_API_BASE_URL }}
echo ${{ vars.VUE_APP_DEV_NAME }}
echo ${{ vars.VUE_APP_BASE_URL }}
echo ${{ vars.VUE_APP_API_BASE_URL }}
echo -e "\n\n\n\n"
echo NODE_ENV=production >> .env
echo VUE_APP_DEV_NAME="${{ github.VUE_APP_DEV_NAME }}" >> .env
echo VUE_APP_BASE_URL="${{ github.VUE_APP_BASE_URL }}" >> .env
echo VUE_APP_API_BASE_URL="${{ github.VUE_APP_API_BASE_URL }}" >> .env
echo VUE_APP_DEV_NAME="${{ vars.VUE_APP_DEV_NAME }}" >> .env
echo VUE_APP_BASE_URL="${{ vars.VUE_APP_BASE_URL }}" >> .env
echo VUE_APP_API_BASE_URL="${{ vars.VUE_APP_API_BASE_URL }}" >> .env
npm install
npm run build
Expand Down

0 comments on commit bb68251

Please sign in to comment.