Skip to content

tag release

tag release #3

Workflow file for this run

name: tag release
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: oneteme/automation-scripts/.github/actions/sonar-npm-scan@main
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- uses: oneteme/automation-scripts/.github/actions/npm-project-version@main
id: prj_ver
outputs:
version: ${{ steps.prj_ver.outputs.version }}
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: oneteme/automation-scripts/.github/actions/create-release-notes@main
with:
version: ${{ needs.build.outputs.version }}