Skip to content

Commit

Permalink
chore(ci): dnslink update on .tech tld
Browse files Browse the repository at this point in the history
This is first step to migrate webui.ipfs.io to .tech,
as it not done when we migrated all other websites:
protocol/bifrost-infra#2018
  • Loading branch information
lidel committed Apr 16, 2024
1 parent fbbe5ff commit 222053a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -178,6 +178,18 @@ jobs:
env:
DNSIMPLE_TOKEN: ${{ secrets.DNSIMPLE_TOKEN }}

# dev dnslink is updated on each main branch update
- run: dnslink-dnsimple --domain ipfs.tech --record _dnslink.dev.webui --link /ipfs/${{ steps.ipfs.outputs.cid }}
if: github.ref == 'refs/heads/main'
env:
DNSIMPLE_TOKEN: ${{ secrets.DNSIMPLE_TOKEN }}

# production dnslink is updated on release (during tag build)
- run: dnslink-dnsimple --domain ipfs.tech --record _dnslink.webui --link /ipfs/${{ steps.ipfs.outputs.cid }}
if: github.ref == 'refs/heads/main' && github.event_name == 'workflow_dispatch'
env:
DNSIMPLE_TOKEN: ${{ secrets.DNSIMPLE_TOKEN }}

test-e2e:
name: 'test:e2e'
uses: ./.github/workflows/test-e2e.yml
Expand Down

0 comments on commit 222053a

Please sign in to comment.