Skip to content

Commit

Permalink
remove changelog for test
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolakovics committed Nov 12, 2024
1 parent c0f1c7c commit ee4e27c
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ permissions:
jobs:
build-linux:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -92,12 +93,6 @@ jobs:
runs-on: ubuntu-latest
needs: [build-linux, build-windows, build-mac]
steps:
- name: Generate Changelog
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -106,7 +101,7 @@ jobs:
with:
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
body: test
draft: false
prerelease: true

Expand Down Expand Up @@ -174,3 +169,18 @@ jobs:
asset_name: MacOS.zip
asset_content_type: application/zip

- name: Generate checksum
uses: jmgilman/actions-generate-checksum@v1
with:
patterns: |
SoundscapeSync.exe
SoundscapeSync.app.zip
- name: Upload checksum
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: checksum.txt
asset_name: checksum.txt
asset_content_type: text/plain

0 comments on commit ee4e27c

Please sign in to comment.