Skip to content

Commit

Permalink
build: Remove nightly release
Browse files Browse the repository at this point in the history
I have a feeling that it's giving users the feeling they'd be able to get notified of new nightly builds, which doesn't happen. Use GitHub Actions to download nightly builds like before.
  • Loading branch information
VisualEhrmanntraut committed Nov 8, 2024
1 parent 38355be commit 1ab38e4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@ jobs:
path: build/*/*.zip
- name: Upload build
uses: svenstaro/upload-release-action@2.9.0
if: github.event_name != 'pull_request'
if: github.event_name == 'release'
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/*/*.zip
tag: ${{ github.event_name == 'release' && github.ref || 'nightly' }}
body: ${{ github.event_name != 'release' && github.event.head_commit.message || '' }}
tag: ${{ github.ref }}
file_glob: true
prerelease: ${{ github.event_name != 'release' }}
overwrite: true

analyse-clang:
Expand Down

0 comments on commit 1ab38e4

Please sign in to comment.