Merge pull request #1834 from scireum/feature/fha/SIRI-861_Blob_Uploa… #497
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/action-gh-release@v0.1.14 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
prerelease: true | |
generate_release_notes: true |