Skip to content

Merge pull request #847 from openedx/feanil/update_release_workflow #425

Merge pull request #847 from openedx/feanil/update_release_workflow

Merge pull request #847 from openedx/feanil/update_release_workflow #425

Workflow file for this run

name: Release CI
on:
push:
branches:
- master
- alpha
permissions:
id-token: write # Required for OIDC
contents: write # For Semantic Release tagging
jobs:
release:
name: Release
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Create Build
run: npm run build
- name: Release to npm/Github
run: npx semantic-release@25
env:
GITHUB_TOKEN: ${{ secrets.OPENEDX_SEMANTIC_RELEASE_GITHUB_TOKEN }}
- name: Docs
run: npm run docs
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.7.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/api/@edx/frontend-platform/1.0.0-semantically-released # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch