Skip to content

Commit

Permalink
give up and just check for rc
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Richter <[email protected]>
  • Loading branch information
erichte-ibm committed Aug 30, 2023
1 parent 705640f commit 56d0565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
uses: actions/download-artifact@v3

- name: test output
run: echo "${{ contains(fromJSON('["rc", "alpha", "beta"]'), github.ref_name) }}" && echo "${{ github.ref_name }}"
run: echo "${{ contains('rc', github.ref_name) }}" && echo "${{ github.ref_name }}"


- name: generate release
uses: softprops/action-gh-release@v1
with:
prerelease: ${{ contains(fromJSON('["rc", "alpha", "beta"]'), github.ref_name) }}
prerelease: ${{ contains('rc', github.ref_name) }}
files: |
*/*.rpm

0 comments on commit 56d0565

Please sign in to comment.