Merge pull request #542 from scireum/mke/SIRI-1036_lib_upgrades #212
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatic Releases | |
on: | |
push: | |
branches: [ "develop" ] | |
tags: | |
- "dev-*.*.*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
if: startsWith(github.ref, 'refs/tags/') | |
- name: Release | |
uses: softprops/[email protected] | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
prerelease: true | |
generate_release_notes: true |