Merge pull request #30651 from RocketChat/release-6.4.2 #27
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: Publish Final Release | |
on: | |
push: | |
branches: | |
- master | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
HUSKY: 0 | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.CI_PAT }} | |
- name: Setup NodeJS | |
uses: ./.github/actions/setup-node | |
with: | |
node-version: 14.21.3 | |
cache-modules: true | |
install: true | |
- uses: dtinth/setup-github-actions-caching-for-turbo@v1 | |
- name: Build packages | |
run: yarn build | |
- name: Publish final release | |
uses: ./packages/release-action | |
with: | |
action: publish-final | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.CI_PAT }} |