chore(release): v6.7.21 #43
Workflow file for this run
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: Publish Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: write-all | |
| jobs: | |
| publish-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Fetching tags | |
| run: git fetch --tags -f || true | |
| - name: Setup Node | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 20.x | |
| registry-url: 'https://registry.npmjs.org' | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Enable Corepack and Set Yarn Version | |
| run: | | |
| corepack enable | |
| corepack prepare [email protected] --activate | |
| - name: Restore Yarn Cache | |
| uses: actions/cache@v3 | |
| id: yarn-cache | |
| with: | |
| path: .yarn/cache | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: Install Dependencies | |
| run: yarn install --immutable | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Publish in NPM (as `baileys`) | |
| run: npm publish --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Publish in NPM (whiskeysockets scope) | |
| run: | | |
| npx json -I -f package.json -e "this.name='@whiskeysockets/baileys'" | |
| npm publish --access public --//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
| npx json -I -f package.json -e "this.name='baileys'" | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Generate Changelog | |
| id: generate_changelog | |
| run: | | |
| changelog=$(npm run changelog:last --silent) | |
| echo "changelog<<EOF" >> $GITHUB_OUTPUT | |
| echo "${changelog}" >> $GITHUB_OUTPUT | |
| echo "EOF" >> $GITHUB_OUTPUT | |
| - name: Make Package | |
| run: yarn pack | |
| - name: Rename Pack | |
| run: mv *.tgz baileys.tgz | |
| - name: Create Release | |
| uses: meeDamian/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| tag: ${{ github.ref }} | |
| commitish: ${{ github.sha }} | |
| name: ${{ github.ref_name }} | |
| body: ${{ steps.generate_changelog.outputs.changelog }} | |
| draft: false | |
| prerelease: false | |
| files: > | |
| baileys.tgz | |
| gzip: folders | |
| allow_override: true |