Skip to content

NIM-2737: Added a removed class (#232) #52

NIM-2737: Added a removed class (#232)

NIM-2737: Added a removed class (#232) #52

Workflow file for this run

name: release
on:
push:
branches:
- master
jobs:
release:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: Brightspace/third-party-actions@actions/checkout
with:
persist-credentials: false
- name: Setup Node
uses: Brightspace/third-party-actions@actions/setup-node
with:
node-version-file: .nvmrc
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: incremental Release
id: incremental-release
uses: BrightspaceUI/actions/incremental-release@main
with:
DEFAULT_INCREMENT: minor
GITHUB_TOKEN: ${{ secrets.D2L_RELEASE_TOKEN }}
NPM: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}