Publish ImportBuddy #6
Workflow file for this run
This file contains 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: Publish ImportBuddy | |
on: | |
release: | |
types: [published] | |
env: | |
DOTNET_CORE_VERSION: 8.0.x | |
permissions: | |
contents: write # This is required to create/push the new git tag | |
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@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_CORE_VERSION }} | |
- name: Build | |
shell: bash | |
run: | | |
tag=$(git describe --tags --abbrev=0) | |
release_name="ImportBuddy-$tag-${{ matrix.target }}" | |
# Build everything | |
dotnet publish tools/ImportBuddy/source/ImportBuddy/ImportBuddy.sln --runtime "${{ matrix.target }}" -c Release -o "$release_name" --self-contained true | |
# 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: "ImportBuddy*" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |