Skip to content

Release node 6.3.2 for mainnet and 7.0.5 for testnet. #128

Release node 6.3.2 for mainnet and 7.0.5 for testnet.

Release node 6.3.2 for mainnet and 7.0.5 for testnet. #128

Workflow file for this run

name: Deploy PR Preview
# Only run when a PR has the 'preview' label
on:
pull_request:
types:
- labeled
concurrency: preview-${{ github.ref }}
jobs:
build-and-deploy-preview:
if: github.event.label.name == 'preview'
runs-on: ubuntu-latest
container: sphinxdoc/sphinx
steps:
- name: Install git πŸ”§
shell: bash
run: |
apt-get update
apt-get install -y git
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- name: Install πŸ”§
shell: bash
run: |
apt-get install -y graphviz rsync
pip3 install pipenv
pipenv sync
- name: Build πŸ› 
shell: bash
run: pipenv run ./scripts/build.sh
- name: Deploy preview for Concordium Academy πŸš€
uses: rossjrw/pr-preview-action@v1
with:
preview-branch: gh-pages
umbrella-dir: pr-preview-academy
custom-url: developer.concordium.software
source-dir: ./build-academy
action: deploy
- name: Deploy preview for Developer Documentation πŸš€
uses: rossjrw/pr-preview-action@v1
with:
preview-branch: gh-pages
umbrella-dir: pr-preview
custom-url: developer.concordium.software
source-dir: ./build
action: deploy