Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Merge pull request #41 from openedx/dependabot/github_actions/actions… #28

Merge pull request #41 from openedx/dependabot/github_actions/actions…

Merge pull request #41 from openedx/dependabot/github_actions/actions… #28

Workflow file for this run

name: Node.js Package Publishing
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Install Dependencies
run: npm install
- name: Publish Package
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
run: npm run semantic-release