feat: added support to color field interpolator to AnimatorFactory (#26) #21
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Semantic Release | |
id: release | |
uses: cycjimmy/semantic-release-action@v3 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
NPM_TOKEN: ${{ secrets.OSS_NPM_TOKEN }} | |
with: | |
extra_plugins: | | |
@semantic-release/changelog@6 | |
@semantic-release/git@10 | |
- name: Teams notification | |
uses: toko-bifrost/ms-teams-deploy-card@3.1.2 | |
if: always() | |
with: | |
github-token: ${{ github.token }} | |
webhook-uri: ${{ secrets.TEAMS_WEBHOOK_URI }} | |
show-on-start: false | |
card-layout-exit: complete | |