Switch to custom action

This commit is contained in:
Alexandre Bruyant 2024-01-12 19:53:00 +01:00
parent 63fd7322f2
commit c800299948

View File

@ -80,30 +80,33 @@ jobs:
name: react-app-wasm
path: app
web3-storage:
name: Push to web3.storage
needs: merge
pin:
name: Pin to cluster node
needs: build
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
outputs:
cid: ${{ steps.web3.outputs.cid }}
cid: ${{ steps.pin.outputs.cid }}
steps:
- uses: actions/download-artifact@v3
with:
name: react-app-wasm
path: react-app-wasm
path: app
- name: Push to web3.storage
uses: web3-storage/add-to-web3@v1
id: web3
- name: pin
id: pin
uses: docker://gitea.bruyant.xyz/alexandre/ipfs-node-pin:main
with:
web3_token: ${{ secrets.WEB3_STORAGE_TOKEN }}
path_to_add: react-app-wasm
- run: echo ${{ steps.web3.outputs.cid }}
ipfs_host: "ipfs-api.ipfs.svc"
ipfs_port: "5001"
path_to_add: app
- name: print CID
run: echo ${{ steps.pin.outputs.cid }}
update-dns:
name: Update OVH DNS
needs: [web3-storage]
needs: [pin]
runs-on: ubuntu-latest
steps:
- name: OVH alter DNS record
@ -114,7 +117,7 @@ jobs:
consumer-key: ${{ secrets.OVH_CONSUMER_KEY }}
dns-zone: bruyant.xyz
record-id: 5218627602
target: "dnslink=/ipfs/${{ needs.web3-storage.outputs.cid }}"
target: "dnslink=/ipfs/${{ needs.pin.outputs.cid }}"
- name: OVH refresh DNS zone
uses: CrispyBaguette/ovh-dns-refresh-action@v1.0.1