From f440f1e0806eb3f614c09501c09da114b7b02d4f Mon Sep 17 00:00:00 2001 From: Nate Bross Date: Mon, 11 Sep 2023 15:47:10 -0500 Subject: [PATCH] include release artifacts --- .github/workflows/release-artifacts.yml | 56 +++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/release-artifacts.yml diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml new file mode 100644 index 0000000..545e3fc --- /dev/null +++ b/.github/workflows/release-artifacts.yml @@ -0,0 +1,56 @@ +name: Publish-Release-To-Artifacts + +on: + release: + types: [published] + +jobs: + release: + name: Release + strategy: + matrix: + kind: ['linux', 'windows', 'macOS'] + include: + - kind: linux + os: ubuntu-latest + target: linux-x64 + - kind: windows + os: windows-latest + target: win-x64 + - kind: macOS + os: macos-latest + target: osx-x64 + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Setup dotnet + uses: actions/setup-dotnet@v3.2.0 + + - name: Build + shell: bash + run: | + tag=$(git describe --tags --abbrev=0) + release_name="SharpFM.App-$tag-${{ matrix.target }}" + + # Build everything + dotnet publish SharpFM.App/SharpFM.App.csproj --runtime "${{ matrix.target }}" -c Release -o "$release_name" + + # Pack files + if [ "${{ matrix.target }}" == "win-x64" ]; then + # Pack to zip for Windows + 7z a -tzip "${release_name}.zip" "./${release_name}/*" + else + tar czvf "${release_name}.tar.gz" "$release_name" + fi + + # Delete output directory + rm -r "$release_name" + + - name: Publish + uses: softprops/action-gh-release@v1 + with: + files: "SharpFM.App*" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file