Merge pull request #654 from scireum/ili/OX-10994 #195
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 |