Skip to content

Merge pull request #1457 from Availity/fix/version #601

Merge pull request #1457 from Availity/fix/version

Merge pull request #1457 from Availity/fix/version #601

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code, and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Publish Release
on:
push:
branches: [master]
jobs:
deploy:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_TOKEN }}
fetch-depth: 0
ref: 'master'
# - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- name: Set Node Version
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: |
echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: Restore yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
# - name: Artifactory Check
# run: yarn check:registry
- name: Install Dependencies
run: yarn install --immutable
- name: Build Packages
run: yarn build:components
- name: Lint Source Code
run: yarn lint
- name: Unit Tests
run: yarn test:ci
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
file: ./coverage/coverage-final.json
token: ${{ secrets.CODECOV_TOKEN }}
- name: Setup Publish Config
run: |
yarn config set npmAuthToken "${{ secrets.NPM_TOKEN }}"
git config --global user.email ${{ secrets.GH_EMAIL }}
git config --global user.name ${{ secrets.GH_USER }}
- name: Publish
run: |
yarn nx affected --target version --parallel=1
yarn nx affected --target publish --parallel=1
git push && git push --tags
- name: Build Docs and Storybook
run: yarn deploy:ci
- name: Deploy Docs and Storybook
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: docusaurus/build
commit_message: deployed docs [skip ci]
committer: ${{ secrets.GH_USER }} ${{ secrets.GH_EMAIL }}
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}