Merge pull request #299 from AmbireTech/admin-invoices #278
This file contains 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: Release (staging 🧪🔬) | |
on: | |
push: | |
branches: | |
- development | |
permissions: | |
contents: write | |
jobs: | |
release: | |
concurrency: ci-${{ github.ref }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup 🦞 | |
uses: ./.github/actions/setup | |
- name: Prepare | |
run: yarn prepare | |
- name: Build 🛠️ | |
env: | |
REACT_APP_ENV: staging | |
REACT_APP_IPFS_GATEWAY: https://ipfs.adex.network/ipfs/ | |
REACT_APP_DAPP_NAME: "AdEx Platform" | |
REACT_APP_DAPP_ICON_PATH: https://raw.githubusercontent.com/AmbireTech/adex-brand/main/Logos/AdEx%20logo%20%7C%20PNG/adex_symbol_square_128px.png | |
REACT_APP_BACKEND_BASE_URL: https://vhoda.adex.network | |
REACT_APP_VALIDATOR_BASE_URL: https://scratchy.adex.network:8443 | |
REACT_APP_IS_MANUAL_DEPOSITING: true | |
run: yarn build | |
# - name: GH pages 404 | |
# run: cp ./build/404.html ./build/404.html | |
- name: Release (staging 🧪🔬) | |
if: github.ref == 'refs/heads/development' | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: ./build | |
cname: v5.adex.network |