This repository was archived by the owner on May 25, 2025. It is now read-only.
fix: stream method was broken, since readable-stream in mysql is no…
#10
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [master, next, act] | |
| jobs: | |
| release-job: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, 'skip ci')" | |
| env: { NODE_OPTIONS: '--max-old-space-size=3200' } | |
| steps: | |
| - { uses: actions/checkout@v4, with: { persist-credentials: true } } | |
| - { uses: actions/setup-node@v4, with: { node-version: 'lts/*', cache: 'yarn' } } | |
| # Cache for npm/npx in ~/.npm | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: npm-v1-${{ runner.os }} | |
| - name: yarn | |
| run: yarn --frozen-lockfile | |
| - name: build | |
| run: yarn build | |
| - name: release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npx @naturalcycles/semantic-release |