2021-12-12 18:47:41 +00:00
|
|
|
name: Build and deploy
|
2021-12-12 18:42:19 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-01-12 18:53:00 +00:00
|
|
|
branches: [master]
|
2021-12-12 18:42:19 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-wasm:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
working_directory: "./src"
|
|
|
|
steps:
|
2024-01-12 18:53:00 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.21
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build -v -o main.wasm ./...
|
|
|
|
working-directory: ${{env.working_directory}}
|
|
|
|
env:
|
|
|
|
GOOS: js
|
|
|
|
GOARCH: wasm
|
|
|
|
|
|
|
|
- name: Upload wasm file
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: wasm
|
|
|
|
path: ${{env.working_directory}}/main.wasm
|
|
|
|
|
2021-12-12 18:42:19 +00:00
|
|
|
build-react:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
working_directory: "./client"
|
|
|
|
steps:
|
2024-01-12 18:53:00 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Node.js environment
|
|
|
|
uses: actions/setup-node@v2.5.0
|
|
|
|
with:
|
|
|
|
node-version-file: .nvmrc
|
|
|
|
|
|
|
|
- name: NPM CI
|
|
|
|
working-directory: ${{env.working_directory}}
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: React build
|
|
|
|
working-directory: ${{env.working_directory}}
|
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: Upload react client
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: react-app
|
|
|
|
path: ${{env.working_directory}}/build
|
|
|
|
|
2021-12-12 18:42:19 +00:00
|
|
|
merge:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-12 18:43:25 +00:00
|
|
|
needs: [build-wasm, build-react]
|
2021-12-12 18:42:19 +00:00
|
|
|
env:
|
|
|
|
working_directory: "./client"
|
|
|
|
steps:
|
|
|
|
- name: Download React app
|
2024-01-03 12:03:33 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2021-12-12 18:42:19 +00:00
|
|
|
with:
|
|
|
|
name: react-app
|
|
|
|
path: app
|
2024-01-12 18:53:00 +00:00
|
|
|
|
2021-12-12 18:42:19 +00:00
|
|
|
- name: Download WASM program
|
2024-01-03 12:03:33 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2021-12-12 18:42:19 +00:00
|
|
|
with:
|
|
|
|
name: wasm
|
2021-12-12 18:56:16 +00:00
|
|
|
path: app
|
2024-01-12 18:53:00 +00:00
|
|
|
|
2021-12-12 18:42:19 +00:00
|
|
|
- name: Upload react app
|
2024-01-03 12:03:33 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-12-12 18:42:19 +00:00
|
|
|
with:
|
|
|
|
name: react-app-wasm
|
|
|
|
path: app
|
2024-01-12 18:53:00 +00:00
|
|
|
|
|
|
|
pin:
|
|
|
|
name: Pin to cluster node
|
2024-01-12 18:57:15 +00:00
|
|
|
needs: merge
|
2021-12-12 18:42:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-01-12 18:53:00 +00:00
|
|
|
container:
|
|
|
|
image: catthehacker/ubuntu:act-latest
|
2021-12-12 18:42:19 +00:00
|
|
|
outputs:
|
2024-01-12 18:53:00 +00:00
|
|
|
cid: ${{ steps.pin.outputs.cid }}
|
2021-12-12 18:42:19 +00:00
|
|
|
steps:
|
2024-01-03 12:03:33 +00:00
|
|
|
- uses: actions/download-artifact@v3
|
2021-12-12 18:42:19 +00:00
|
|
|
with:
|
|
|
|
name: react-app-wasm
|
2024-01-12 18:53:00 +00:00
|
|
|
path: app
|
|
|
|
|
|
|
|
- name: pin
|
|
|
|
id: pin
|
|
|
|
uses: docker://gitea.bruyant.xyz/alexandre/ipfs-node-pin:main
|
2021-12-12 18:42:19 +00:00
|
|
|
with:
|
2024-01-12 18:53:00 +00:00
|
|
|
ipfs_host: "ipfs-api.ipfs.svc"
|
|
|
|
ipfs_port: "5001"
|
|
|
|
path_to_add: app
|
|
|
|
- name: print CID
|
|
|
|
run: echo ${{ steps.pin.outputs.cid }}
|
2021-12-12 18:42:19 +00:00
|
|
|
|
|
|
|
update-dns:
|
|
|
|
name: Update OVH DNS
|
2024-01-12 18:53:00 +00:00
|
|
|
needs: [pin]
|
2021-12-12 18:42:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: OVH alter DNS record
|
|
|
|
uses: CrispyBaguette/ovh-dns-alter-action@v1.1.1
|
|
|
|
with:
|
|
|
|
application-key: ${{ secrets.OVH_APPLICATION_KEY }}
|
|
|
|
application-secret: ${{ secrets.OVH_APPLICATION_SECRET }}
|
|
|
|
consumer-key: ${{ secrets.OVH_CONSUMER_KEY }}
|
|
|
|
dns-zone: bruyant.xyz
|
|
|
|
record-id: 5218627602
|
2024-01-12 18:53:00 +00:00
|
|
|
target: "dnslink=/ipfs/${{ needs.pin.outputs.cid }}"
|
|
|
|
|
2021-12-12 18:42:19 +00:00
|
|
|
- name: OVH refresh DNS zone
|
|
|
|
uses: CrispyBaguette/ovh-dns-refresh-action@v1.0.1
|
|
|
|
with:
|
|
|
|
application-key: ${{ secrets.OVH_APPLICATION_KEY }}
|
|
|
|
application-secret: ${{ secrets.OVH_APPLICATION_SECRET }}
|
|
|
|
consumer-key: ${{ secrets.OVH_CONSUMER_KEY }}
|
|
|
|
dns-zone: bruyant.xyz
|