This repository was archived by the owner on Sep 30, 2025. It is now read-only.
Merge pull request #66 from etchteam/dependabot/npm_and_yarn/cipher-b… #23
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"] | |
| env: | |
| HUSKY: 0 | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.17.1 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Compile the release | |
| run: npm run dist | |
| - name: Release | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| run: npm run release |