Skip to content

Commit

Permalink
Merge pull request #749 from ipfs/feat/dual-publish-dnslink
Browse files Browse the repository at this point in the history
feat: dual publish to  /ipns/dist.ipfs.tech
  • Loading branch information
lidel committed Aug 11, 2022
2 parents 9536c81 + 6d7c3b1 commit fd43915
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ jobs:
with:
name: diff
path: diff
- name: Update DNSLink (if on the main branch)
- name: Update .tech DNSLink (if on the main branch)
run: npx dnslink-dnsimple --domain dist.ipfs.tech --link /ipfs/${{ steps.cid-reader.outputs.CID }}
if: github.ref == 'refs/heads/master'
env:
DNSIMPLE_TOKEN: ${{ secrets.DNSIMPLE_TOKEN }}
- name: Update legacy .io DNSLink (if on the main branch)
run: npx dnslink-dnsimple --domain dist.ipfs.io --link /ipfs/${{ steps.cid-reader.outputs.CID }}
if: github.ref == 'refs/heads/master'
env:
Expand Down

0 comments on commit fd43915

Please sign in to comment.