Skip to content

Commit

Permalink
fix: migrate repo (#1388)
Browse files Browse the repository at this point in the history
- Fixed CI permissions
- Added a comment so we can trigger a release
  • Loading branch information
joaosa authored Apr 23, 2024
1 parent 1161326 commit 10b7742
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ on:
jobs:
deploy-access-client:
runs-on: ubuntu-latest
permissions:
contents: write
if: github.event.inputs.package == 'access-client'
steps:
- uses: actions/checkout@v3
Expand All @@ -45,6 +47,8 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
deploy-upload-client:
runs-on: ubuntu-latest
permissions:
contents: write
if: github.event.inputs.package == 'upload-client'
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
outputs:
paths_released: ${{ steps.release.outputs.paths_released }}
steps:
Expand Down
3 changes: 3 additions & 0 deletions packages/upload-api/src/customer/get.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ class UnknownProvider extends Provider.Failure {
this.name = /** @type {const} */ ('UnknownProvider')
}

/**
*
*/
describe() {
return `Provider ${this.did} not found`
}
Expand Down

0 comments on commit 10b7742

Please sign in to comment.