Canary Build for refs/heads/main #73
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
# Credits to @Scighost from Starward for his contributions! | |
name: Build-Canary | |
run-name: Canary Build for ${{ github.ref }} | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # At 00:00 on Sunday | |
jobs: | |
build: | |
# runs-on: [self-hosted, linux] | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
configuration: [Release] # No need to distribute Debug builds | |
platform: [x64] | |
framework: [net7.0-windows10.0.22000.0] | |
env: | |
Configuration: ${{ matrix.configuration }} | |
Platform: ${{ matrix.platform }} | |
DOTNET_INSTALL_DIR: '.\.dotnet' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Get short Git SHA | |
id: vars | |
run: | | |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV | |
- name: Cache dotnet # cache dotnet install https://stackoverflow.com/questions/75180149/how-to-cache-dotnet-installation-in-github-actions | |
id: cache-dotnet | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.DOTNET_INSTALL_DIR }} | |
key: ${{ runner.os }}-dotnet-7 | |
restore-keys: ${{ runner.os }}-dotnet-7 | |
- name: Cache nuget # cache nuget https://github.com/actions/cache/blob/main/examples.md#c---nuget | |
uses: actions/cache@v3 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Install .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Restore | |
run: dotnet restore CollapseLauncher | |
- name: Build | |
run: | | |
dotnet publish CollapseLauncher -p:PublishProfile=Publish-PreviewRelease -p:PublishDir=".\preview-build\" | |
# - name: Upload Artifact (Debug) | |
# uses: actions/[email protected] | |
# if: ${{ matrix.configuration == 'Debug' }} | |
# with: | |
# name: collapse_debug_${{ github.ref }}_${{ steps.vars.outputs.sha_short }}.${{ matrix.platform }}-${{ matrix.configuration }} | |
# path: ./CollapseLauncher/bin/x64/Debug/${{ matrix.framework }}/ | |
- name: Upload Artifact (Release) | |
uses: actions/[email protected] | |
if: ${{ matrix.configuration == 'Release' }} | |
with: | |
name: collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }} | |
path: ./CollapseLauncher/preview-build/ |