fix: actually replace multi-line network: TESTNET with networkPassphrase #1
This file contains hidden or 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: Deploy NameStake | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: npm ci | |
| - run: npm run build | |
| env: | |
| VITE_CONTRACT_ID: ${{ secrets.VITE_CONTRACT_ID }} | |
| VITE_XLM_TOKEN: ${{ secrets.VITE_XLM_TOKEN }} | |
| VITE_NETWORK_PASSPHRASE: "Test SDF Network ; September 2015" | |
| VITE_SOROBAN_RPC_URL: https://soroban-testnet.stellar.org | |
| - uses: amondnet/vercel-action@v25 | |
| with: | |
| vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
| vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
| vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} | |
| working-directory: frontend | |
| vercel-args: '--prod' |