feat: add frontend env vars to deploy script
All checks were successful
Deploy eolas-app / deploy (push) Successful in 50s

This commit is contained in:
Thomas Bishop 2025-11-07 18:19:59 +00:00
parent 4199bdb12d
commit d8579876ad

View file

@ -10,6 +10,9 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: npm install - run: npm install
- run: npm run build - run: npm run build
env:
VITE_EOLAS_API_ENDPOINT: ${{ vars.EOLAS_API_ENDPOINT }}
VITE_EOLAS_API_KEY: ${{ secrets.EOLAS_API_KEY }}
- run: | - run: |
echo "${{ secrets.VPS_DEPLOY_USER_SSH_KEY }}" > /tmp/ssh_key echo "${{ secrets.VPS_DEPLOY_USER_SSH_KEY }}" > /tmp/ssh_key
chmod 600 /tmp/ssh_key chmod 600 /tmp/ssh_key