Removed clean table names from SDK to have the logic on the OrbisDB i… #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- run: npm ci | |
- run: npm run build | |
- uses: JS-DevTools/npm-publish@v2 | |
with: | |
access: "public" | |
provenance: true | |
token: ${{ secrets.NPM_TOKEN }} |