fix: use snap config to format fil amounts #60
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
name: Release | |
env: | |
CI: true | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
outputs: | |
paths_released: ${{ steps.release.outputs.paths_released }} | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
command: manifest | |
config-file: .github/release-please-config.json | |
manifest-file: .github/release-please-manifest.json | |
default-branch: master | |
release-type: node | |
npm: | |
needs: release | |
if: | | |
contains(fromJson(needs.release.outputs.paths_released), 'packages/snap') || | |
contains(fromJson(needs.release.outputs.paths_released), 'packages/adapter') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm run lint | |
- run: pnpm run build | |
- run: pnpm -r publish --access=public --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
docs: | |
needs: release | |
if: | | |
contains(fromJson(needs.release.outputs.paths_released), 'packages/snap') || | |
contains(fromJson(needs.release.outputs.paths_released), 'packages/adapter') | |
uses: './.github/workflows/reusable-docs.yml' |