Skip to content

Commit d79663c

Browse files
authored
chore: migrate repo (#96)
Triggered a release to make sure the repo was migrated successfully. - added a missing write perm to [GitHub - marocchino/sticky-pull-request-comment: create comment on pull request, if exists update that comment.](https://github.com/marocchino/sticky-pull-request-comment), as it seems those changes [can be set org-wide](https://github.com/organizations/w3s-project/settings/actions) but it's best to be explicit - more info in [Got error of \`Resource not accessible by integration\` where re-creating the same name repo · community · Discussion #60820 · GitHub](https://github.com/orgs/community/discussions/60820#discussioncomment-6445895).
1 parent 1906d39 commit d79663c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
needs:
1616
- test
1717
runs-on: ubuntu-latest
18+
permissions:
19+
pull-requests: write
1820
environment:
1921
name: ${{ (github.ref_name == 'main') && 'staging' || format('preview-{0}', github.ref_name) }}
2022
url: ${{ (github.ref_name == 'main') && 'https://staging.console.web3.storage/' || steps.cloudflare_url.outputs.stdout }}

src/components/services.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import * as DID from '@ipld/dag-ucan/did'
55

66

77
export const serviceURL = new URL(
8-
//'https://staging.up.web3.storage'
8+
// 'https://staging.up.web3.storage'
99
process.env.NEXT_PUBLIC_W3UP_SERVICE_URL ?? 'https://up.web3.storage'
1010
)
1111
export const servicePrincipal = DID.parse(
12-
//'did:web:staging.web3.storage'
12+
// 'did:web:staging.web3.storage'
1313
process.env.NEXT_PUBLIC_W3UP_SERVICE_DID ?? 'did:web:web3.storage'
1414
)
1515

0 commit comments

Comments
 (0)