Merge pull request #116 from dan0v/master #25
This file contains hidden or 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: Release .NET Cross Platform Desktop | |
| on: | |
| push: | |
| branches: | |
| - release | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| configuration: [Release] | |
| runs-on: ubuntu-latest # For a list of available runner types, refer to | |
| # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
| steps: | |
| # Install the .NET Core workload | |
| - name: Install .NET Core | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| ref: release | |
| - name: Publish packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y zip unzip libfuse2 | |
| cd Publish/Windows && /usr/bin/bash ./Windows.sh | |
| cd ../Linux && /usr/bin/bash ./Appimage.sh | |
| cd ../MacOS && /usr/bin/bash ./MacOS.sh | |
| echo "VERSION=$(cat ../version.txt | sed 's/ *$//g' | sed 's/\r//' | sed ':a;N;$!ba;s/\n//g')" >> "$GITHUB_ENV" | |
| - name: Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| name: "Version ${{env.VERSION}}" | |
| prerelease: true | |
| tag_name: "${{env.VERSION}}" | |
| files: | | |
| Publish/Amplitude_Soundboard-x86_64.AppImage | |
| Publish/Amplitude_Soundboard_macOS_x86_64.tar.gz | |
| Publish/Amplitude_Soundboard_win_x86_64.zip | |
| Publish/version.txt |