A microsite explaining the word "Miriscient"

Host on Tangled & Wisp

Changed files
+34 -28
.github
workflows
.tangled
workflows
-28
.github/workflows/deploy.yml
··· 1 - name: Ship to IPFS 2 - on: [push] 3 - 4 - jobs: 5 - Deploy: 6 - runs-on: ubuntu-latest 7 - steps: 8 - - name: Check out repository code 9 - uses: actions/checkout@v3 10 - - name: Publish to IPFS 11 - id: Publish 12 - uses: aquiladev/ipfs-action@master 13 - with: 14 - path: ./public 15 - service: filebase 16 - pinName: ${{ github.event.repository.name }} 17 - filebaseBucket: microsites 18 - filebaseKey: ${{ secrets.FILEBASE_KEY }} 19 - filebaseSecret: ${{ secrets.FILEBASE_SECRET }} 20 - - name: Update DNSLink 21 - env: 22 - CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }} 23 - RECORD_DOMAIN: ${{ github.event.repository.name }} 24 - CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }} 25 - id: dnslink 26 - uses: GoodDollar/cloudflare-update-web3-hostname@v1.2 27 - with: 28 - cid: ${{ steps.Publish.outputs.cid }}
+34
.tangled/workflows/deploy.yaml
··· 1 + when: 2 + - event: ['push'] 3 + branch: ['main'] 4 + - event: ['manual'] 5 + 6 + engine: 'nixery' 7 + 8 + clone: 9 + skip: false 10 + depth: 1 11 + 12 + dependencies: 13 + nixpkgs: 14 + - coreutils 15 + - curl 16 + 17 + environment: 18 + SITE_PATH: ./public 19 + SITE_NAME: 'miriscient.org' 20 + WISP_HANDLE: 'byjp.me' 21 + 22 + steps: 23 + - name: deploy assets to wisp 24 + command: | 25 + # Download Wisp CLI 26 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 27 + chmod +x wisp-cli 28 + 29 + # Deploy to Wisp 30 + ./wisp-cli \ 31 + "$WISP_HANDLE" \ 32 + --path "$SITE_PATH" \ 33 + --site "$SITE_NAME" \ 34 + --password "$WISP_APP_PASSWORD"