Skip to content

Commit

Permalink
Merge pull request #119 from Holo-Host/QA
Browse files Browse the repository at this point in the history
candy: release candidate for alpha release
  • Loading branch information
zeeshan595 authored Apr 17, 2023
2 parents 09a7800 + c59076f commit f95d8da
Show file tree
Hide file tree
Showing 15 changed files with 592 additions and 327 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- run: npm ci
- name: Build site
env:
MEMBRANE_PROOF_SERVICE_URL: "https://devnet-membrane-proof-service.holo.host/"
MEMBRANE_PROOF_SERVICE_URL: "https://hbs.dev.holotest.net"
run: 'npm run build --if-present'
- name: Publish site
uses: cloudflare/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- run: npm ci
- name: Build site
env:
MEMBRANE_PROOF_SERVICE_URL: "https://membrane-proof-service.holo.host/"
MEMBRANE_PROOF_SERVICE_URL: "https://hbs.holo.host"
run: 'npm run build --if-present'
- name: Publish site
uses: cloudflare/[email protected]
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/deploy-to-qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Continuous Deployment to QA
on:
push:
branches:
- QA
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy qa-quickstart
defaults:
run:
working-directory: gen-web
steps:
- uses: actions/checkout@v2
- name: Install Rust minimal stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- run: npm ci
- name: Build site
env:
MEMBRANE_PROOF_SERVICE_URL: 'https://hbs.qa.holotest.net'
run: 'npm run build --if-present'
- name: Publish site
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
workingDirectory: 'gen-web'
environment: QA
Loading

0 comments on commit f95d8da

Please sign in to comment.