Skip to content

Commit 06271b5

Browse files
committed
feat(ci): release-please
1 parent 042c93f commit 06271b5

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

.github/workflows/main.yml

+26-1
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,15 @@ jobs:
243243
CLUSTER_USER: ${{ secrets.CLUSTER_USER }}
244244
CLUSTER_PASSWORD: ${{ secrets.CLUSTER_PASSWORD }}
245245
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"
246255
- name: Update DNSLink at inbrowser.dev (Staging for Dev Testing) if main branch was updated
247256
if: (github.event_name == 'workflow_dispatch' || github.event_name == 'push') && github.ref == 'refs/heads/main'
248257
run: |
@@ -366,7 +375,7 @@ jobs:
366375
- cloudflare-ipfs.com
367376
steps:
368377
- 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
370379
- uses: ipfs/download-ipfs-distribution-action@v1
371380
with:
372381
name: kubo
@@ -396,3 +405,19 @@ jobs:
396405
- uses: ipfs/start-ipfs-daemon-action@v1
397406
- name: Confirm Kubo can fetch with Routing.Type=${{ matrix.routing-type }}
398407
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

Comments
 (0)