From e35f4866f5d7545eb5579bf82a80f0ba1a3b05f9 Mon Sep 17 00:00:00 2001 From: Edgard Date: Thu, 18 May 2023 08:40:40 -0300 Subject: [PATCH] ci: added Nightly Release workflow --- .github/workflows/update-nightly.yml | 79 ++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 .github/workflows/update-nightly.yml diff --git a/.github/workflows/update-nightly.yml b/.github/workflows/update-nightly.yml new file mode 100644 index 0000000..8d08f6b --- /dev/null +++ b/.github/workflows/update-nightly.yml @@ -0,0 +1,79 @@ +name: Update Nightly + +permissions: + contents: write + +on: + push: + branches: + - master + +jobs: + update-nightly: + 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/setup-node@v3.6.0 + with: + node-version: 18.x + + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + + - uses: actions/cache@v3 + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + + - name: Install Dependencies + run: yarn + + - name: Update version to alpha + run: yarn version --prerelease --preid=alpha --no-git --no-git-tag-version + + - name: Build NPM package + run: yarn pack && mv whiskeysockets-baileys-*.tgz whiskeysockets-baileys-nightly.tgz + + - name: Generate Changelog + id: generate_changelog + run: | + changelog=$(yarn run --silent changelog:preview) + echo "changelog<> $GITHUB_OUTPUT + echo "${changelog}" >> $GITHUB_OUTPUT + echo "EOF" >> $GITHUB_OUTPUT + + - name: Update Nightly TAG + uses: richardsimko/update-tag@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: nightly + + - name: Update Nightly Release + uses: meeDamian/github-release@2.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + token: ${{ secrets.GITHUB_TOKEN }} + tag: nightly + commitish: ${{ github.sha }} + name: Nightly Release + body: ${{ steps.generate_changelog.outputs.changelog }} + draft: false + prerelease: true + files: > + whiskeysockets-baileys-nightly.tgz + gzip: folders + allow_override: true