File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,18 @@ jobs:
178
178
env :
179
179
DNSIMPLE_TOKEN : ${{ secrets.DNSIMPLE_TOKEN }}
180
180
181
+ # dev dnslink is updated on each main branch update
182
+ - run : dnslink-dnsimple --domain ipfs.tech --record _dnslink.dev.webui --link /ipfs/${{ steps.ipfs.outputs.cid }}
183
+ if : github.ref == 'refs/heads/main'
184
+ env :
185
+ DNSIMPLE_TOKEN : ${{ secrets.DNSIMPLE_TOKEN }}
186
+
187
+ # production dnslink is updated on release (during tag build)
188
+ - run : dnslink-dnsimple --domain ipfs.tech --record _dnslink.webui --link /ipfs/${{ steps.ipfs.outputs.cid }}
189
+ if : github.ref == 'refs/heads/main' && github.event_name == 'workflow_dispatch'
190
+ env :
191
+ DNSIMPLE_TOKEN : ${{ secrets.DNSIMPLE_TOKEN }}
192
+
181
193
test-e2e :
182
194
name : ' test:e2e'
183
195
uses : ./.github/workflows/test-e2e.yml
You can’t perform that action at this time.
0 commit comments