Skip to content

chore: update to dfx 0.32.0 (#1342) #1767

chore: update to dfx 0.32.0 (#1342)

chore: update to dfx 0.32.0 (#1342) #1767

name: hosting-static-website
on:
push:
branches:
- master
pull_request:
paths:
- hosting/static-website/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/hosting-static-website-example.yaml
- .ic-commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
hosting-static-website-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1.2.0
- name: Provision Darwin
run: bash .github/workflows/provision-darwin.sh
- name: Pre-download network launcher
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bash .github/workflows/pre-download-launcher.sh
- name: Hosting Static Website Darwin
run: |
pushd hosting/static-website
icp network start -d
icp deploy
popd
hosting-static-website-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1.2.0
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Pre-download network launcher
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bash .github/workflows/pre-download-launcher.sh
- name: Hosting Static Website Linux
run: |
pushd hosting/static-website
icp network start -d
icp deploy
popd