Updating metadata read/write to be more ubiquitous #7
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: PR Build | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- "**.md" | |
- "LICENSE" | |
issue_comment: | |
types: [created] | |
jobs: | |
isCodeOwner: | |
if: github.event.issue.pull_request && contains(github.event.comment.body, '/test-pack') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check if comment author is a code owner | |
id: check | |
run: | | |
CODEOWNERS=$(cat .github/CODEOWNERS) | |
COMMENT_AUTHOR=${{ github.event.comment.user.login }} | |
if echo "$CODEOWNERS" | grep -q "$COMMENT_AUTHOR"; then | |
echo "::set-output name=isCodeOwner::true" | |
else | |
echo "::set-output name=isCodeOwner::false" | |
fi | |
build-release: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: dotnet build | |
run: dotnet build -c release | |
- name: dotnet publish | |
if: steps.isCodeOwner.outputs.isCodeOwner == 'true' | |
run: dotnet publish -o pub -c release -p:PublishSingleFile=true -p:Version=${{ env.APP_VERSION }} | |
- name: Upload binaries | |
if: steps.isCodeOwner.outputs.isCodeOwner == 'true' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binaries | |
path: pub/FileSorter.* | |
build-debug: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: dotnet build | |
run: dotnet build -c debug |