Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build scripts #62

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/develop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Develop Build
on:
workflow_dispatch:
pull_request:
branches: [ develop ]
push:
branches: [ develop ]

Expand All @@ -16,12 +17,12 @@ jobs:
- name: Checkout Meadow.Units
uses: actions/checkout@v3
with:
ref: develop
path: Meadow.Units

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Build
run: dotnet build -c Release Source/Meadow.Units/Meadow.Units.sln
run: dotnet build -c Release Meadow.Units/Source/Meadow.Units/Meadow.Units.sln
5 changes: 3 additions & 2 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Main Build
on:
workflow_dispatch:
pull_request:
branches: [ main ]
push:
branches: [ main ]

Expand All @@ -16,12 +17,12 @@ jobs:
- name: Checkout Meadow.Units
uses: actions/checkout@v3
with:
ref: main
path: Meadow.Units

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

- name: Build
run: dotnet build -c Release Source/Meadow.Units/Meadow.Units.sln
run: dotnet build -c Release Meadow.Units/Source/Meadow.Units/Meadow.Units.sln
Loading