Skip to content

chore: last attempt in fixing promote release #87

chore: last attempt in fixing promote release

chore: last attempt in fixing promote release #87

Workflow file for this run

name: Release
on:
push:
branches: [develop]
jobs:
release:
if: ${{ github.ref == 'refs/heads/develop' && !startsWith(github.ref, 'refs/tags/v') }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0 # required so semantic-release and our scripts can access tags and history
- uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/commit-analyzer
@semantic-release/release-notes-generator
@semantic-release/changelog
@semantic-release/exec
@semantic-release/git
@semantic-release/github
conventional-changelog-conventionalcommits
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GIT_AUTHOR_NAME: "Felix T.J. Dietrich"
GIT_AUTHOR_EMAIL: "felixtj.dietrich@tum.de"
GIT_COMMITTER_NAME: "Felix T.J. Dietrich"
GIT_COMMITTER_EMAIL: "felixtj.dietrich@tum.de"