@@ -243,6 +243,15 @@ jobs:
243
243
CLUSTER_USER : ${{ secrets.CLUSTER_USER }}
244
244
CLUSTER_PASSWORD : ${{ secrets.CLUSTER_PASSWORD }}
245
245
timeout-minutes : 60
246
+ - name : Attach the CAR to release if building a release tag
247
+ if : github.event_name == 'release' && github.event.action == 'published'
248
+ run : |
249
+ curl \
250
+ -XPOST \
251
+ -H "Authorization: Bearer ${{ secrets.UCI_GITHUB_TOKEN }}" \
252
+ -H "Content-Type: application/octet-stream" \
253
+ --data-binary "@dist_${{ github.sha }}.car" \
254
+ "https://api.github.com/repos/${{ github.repository }}/releases/${{ steps.get_release.outputs.release_id }}/assets?name=dist_${{ github.event.release.tag_name }}_${{ github.sha }}.car"
246
255
- name : Update DNSLink at inbrowser.dev (Staging for Dev Testing) if main branch was updated
247
256
if : (github.event_name == 'workflow_dispatch' || github.event_name == 'push') && github.ref == 'refs/heads/main'
248
257
run : |
@@ -366,7 +375,7 @@ jobs:
366
375
- cloudflare-ipfs.com
367
376
steps :
368
377
- name : Try fetching the new CID as CAR from ${{ matrix.gateway }}
369
- run : curl --retry 6 --retry-delay 61 --retry-all-errors -v -L "https://${{ matrix.gateway }}/ipfs/${{ needs.publish-to-ipfs.outputs.cid }}?format=car" -o dag.car
378
+ run : curl --retry 6 --retry-delay 61 --retry-all-errors -v -L --http1.1 "https://${{ matrix.gateway }}/ipfs/${{ needs.publish-to-ipfs.outputs.cid }}?format=car" -o dag.car
370
379
- uses : ipfs/download-ipfs-distribution-action@v1
371
380
with :
372
381
name : kubo
@@ -396,3 +405,19 @@ jobs:
396
405
- uses : ipfs/start-ipfs-daemon-action@v1
397
406
- name : Confirm Kubo can fetch with Routing.Type=${{ matrix.routing-type }}
398
407
run : ipfs dag stat ${{ needs.publish-to-ipfs.outputs.cid }}
408
+
409
+ release-please :
410
+ runs-on : ubuntu-latest
411
+ if : (github.event_name == 'workflow_dispatch' || github.event_name == 'push') && github.ref == 'refs/heads/main'
412
+ needs : [ build, check ]
413
+ permissions :
414
+ contents : write # to create release
415
+ pull-requests : write # to create release PR
416
+ steps :
417
+ - uses : google-github-actions/release-please-action@v4
418
+ with :
419
+ # NOTE: we need elevated PAT token for production DNSLink to be updated. this is because tags created by the default token
420
+ # will not trigger CI build, and we need publish-to-ipfs to run when a new release tag is created by this action
421
+ # https://github.com/google-github-actions/release-please-action?tab=readme-ov-file#github-credentials
422
+ token : ${{ secrets.UCI_GITHUB_TOKEN || github.token }}
423
+ release-type : node
0 commit comments