Skip to content

Commit

Permalink
.github/workflows/dist.yml: Create a GH release also for beta and rc
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Aug 16, 2024
1 parent e042294 commit f5f5db1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,15 @@ jobs:

needs: release_dist
runs-on: ubuntu-latest
if: (success() || failure()) && github.repository == 'sagemath/sage' && startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'beta') && !contains(github.ref, 'rc')
if: (success() || failure()) && github.repository == 'sagemath/sage' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
with:
name: release_dist
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
prerelease: contains(github.ref, 'beta') || contains(github.ref, 'rc')
files: |
dist/*
upstream/*
Expand Down

0 comments on commit f5f5db1

Please sign in to comment.