Skip to content

feat: add actions to attempts and fix missing attributes on table (#204) #52

feat: add actions to attempts and fix missing attributes on table (#204)

feat: add actions to attempts and fix missing attributes on table (#204) #52

Workflow file for this run

name: Release CI
on:
push:
branches:
- main
permissions:
id-token: write # Required for OIDC
contents: write # For Semantic Release tagging
jobs:
release:
name: Release
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Release to npm/Github
run: npx semantic-release@25
env:
GITHUB_TOKEN: ${{ secrets.OPENEDX_SEMANTIC_RELEASE_GITHUB_TOKEN }}