Skip to content

Merge branch 'develop' of https://github.com/Luxoria-EIP/Luxoria into… #20

Merge branch 'develop' of https://github.com/Luxoria-EIP/Luxoria into…

Merge branch 'develop' of https://github.com/Luxoria-EIP/Luxoria into… #20

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- main
- develop
jobs:
main:
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}