Skip to content

Merge pull request #53 from mathisloge/ml/fix_python_install #45

Merge pull request #53 from mathisloge/ml/fix_python_install

Merge pull request #53 from mathisloge/ml/fix_python_install #45

Workflow file for this run

name: Release
on:
push:
branches:
- main
- develop
permissions:
contents: read # for checkout
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: "lts/*"
- uses: actions/setup-python@v6
with:
python-version: 3.x
- run: pip install -r requirements-dev.txt
- name: Install dependencies
run: npm clean-install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}
run: npx semantic-release