Skip to content

Switch to using our unwrapping commits method rather than always look… #11

Switch to using our unwrapping commits method rather than always look…

Switch to using our unwrapping commits method rather than always look… #11

Workflow file for this run

name: Build and Test
on:
push:
branches: [ '**' ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for tags and branches
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Fix line endings and run build script
run: |
sed -i 's/\r$//' ./build_check_release.sh
chmod +x ./build_check_release.sh
./build_check_release.sh
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: check-release-builds
path: check_release_dist/
retention-days: 7