Merge pull request #74 from GravityWolfNotAmused/dev #8
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: Create Release Apps | |
on: | |
push: | |
branches: [ "latest" ] | |
jobs: | |
build-on-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/[email protected] | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal | |
- name: Publish x64 | |
run: dotnet publish -p:PublishSingleFile=true -r win-x64 -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}} | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/win-x64/publish | |
- name: Publish x86 | |
run: dotnet publish -p:PublishSingleFile=true -r win-x86 -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact x86 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}}-win-x86 | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/win-x86/publish | |
- name: Publish Arm x86 | |
run: dotnet publish -p:PublishSingleFile=true -r win-arm -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact Arm x86 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}}-arm86 | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/win-arm/publish | |
- name: Publish Arm x64 | |
run: dotnet publish -p:PublishSingleFile=true -r win-arm64 -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact Arm x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}}-arm64 | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/win-arm64/publish | |
build-on-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/[email protected] | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal | |
- name: Publish x64 | |
run: dotnet publish -p:PublishSingleFile=true -r linux-x64 -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}}-linux64 | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/linux-x64/publish | |
- name: Publish Arm x86 | |
run: dotnet publish -p:PublishSingleFile=true -r linux-arm -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact Arm x86 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}}-linux-arm86 | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/linux-arm/publish | |
- name: Publish Arm x64 | |
run: dotnet publish -p:PublishSingleFile=true -r linux-arm64 -c Release --self-contained true -p:PublishTrimmed=true -p:UseAppHost=true | |
- name: Create Artifact Arm x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playercountbot-${{ steps.branch-name.outputs.current_branch }}-${{steps.date.outputs.date}}-linux-arm64 | |
path: ./DiscordPlayerCountBot/bin/Release/net6.0/linux-arm64/publish |