Skip to content

Commit

Permalink
fix: api
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Aug 25, 2022
1 parent cf63f0c commit 4e70483
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
manifest-file: .github/release-please-manifest.json
publish:
needs: release
if: contains(needs.release.outputs.paths_released, 'packages/access')
if: contains(fromJson(needs.release.outputs.paths_released), 'packages/access')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -41,13 +41,13 @@ jobs:
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
pages:
needs: release
if: contains(needs.release.outputs.paths_released, 'packages/wallet')
if: contains(fromJson(needs.release.outputs.paths_released), 'packages/wallet')
runs-on: ubuntu-latest
steps:
- run: echo 'pages'
worker:
needs: release
if: contains(needs.release.outputs.paths_released, 'packages/access-api')
if: contains(fromJson(needs.release.outputs.paths_released), 'packages/access-api')
uses: './.github/workflows/reuse-deploy-api.yml'
with:
environment: production
Expand Down
2 changes: 1 addition & 1 deletion packages/access-api/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# w3access API

## Contributinggg
## Contributing

We use `pnpm` in this project and commit the `pnpm-lock.yaml` file.

Expand Down

0 comments on commit 4e70483

Please sign in to comment.