Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: aws

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/azure-service-bus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: azure-service-bus

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cosmosdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: cosmosdb

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: .NET

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -18,22 +18,22 @@ jobs:

steps:
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -53,7 +53,7 @@ jobs:


- name: Publish CI Packages
if: github.event_name != 'pull_request'
if: github.repository_owner == 'JasperFx' && github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
run: |
for package in $(find -name "*.nupkg" | grep "minver" -v); do

Expand All @@ -72,7 +72,7 @@ jobs:
done

- name: Publish Release Packages
if: startsWith(github.ref, 'refs/tags/v')
if: github.repository_owner == 'JasperFx' && github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v')
run: |
for package in $(find -name "*.nupkg" | grep "minver" -v); do
echo "${0##*/}": Pushing $package...
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/efcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: efcore

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: http

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -18,22 +18,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: kafka

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/marten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: marten

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/mqtt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: mqtt

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
config: Release
Expand All @@ -17,22 +17,22 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET 8
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x

- name: Setup .NET 10
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

Expand Down
Loading
Loading