Skip to content

Merge pull request #107 from ic123-xyz/apply-draft #54

Merge pull request #107 from ic123-xyz/apply-draft

Merge pull request #107 from ic123-xyz/apply-draft #54

name: Deploy to Staging
on:
push:
branches:
- main
paths-ignore:
- 'LICENSE'
- 'README.md'
- 'canister_ids.json'
- 'cmd-change-domain'
- 'dns-setup'
- '.github/workflows/deploy-production.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Prepare
run: |
DFX_VERSION=0.14.3 sh -ci "$(curl -fsSL https://internetcomputer.org/install.sh)"
echo "${{secrets.WEIHAILU}}" > identity.pem
chmod 400 identity.pem
mkdir -p ~/.config/dfx/identity/default
mv identity.pem ~/.config/dfx/identity/default/identity.pem
dfx identity list
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Build
run: |
cd docusaurus
npm install
npm run build
cd ..
- name: Deploy
run: |
rm canister_ids.json
echo '{ "ic123_frontend": { "ic": "${{ vars.STAGING_CANISTER_ID }}" } }' > canister_ids.json
dfx start --background --clean
dfx deploy --network=ic
- name: Summarize
run: echo 'https://${{ vars.STAGING_CANISTER_ID }}.icp0.io' >> $GITHUB_STEP_SUMMARY