Skip to content

Commit

Permalink
ci: fix publish_nuget.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Cuneo <[email protected]>
  • Loading branch information
AndreaCuneo authored Jul 11, 2024
1 parent a652292 commit e9b5ea7
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,23 @@ env:
jobs:
deploy:
name: 'Nuget Push'
runs-on: 'windows-latest'
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')

runs-on: 'ubuntu-latest'
services:
azurite:
image: mcr.microsoft.com/azure-storage/azurite:latest
ports:
- 10000:10000
- 10001:10001
- 10002:10002
sqlserver:
image: mcr.microsoft.com/mssql/server:2022-latest
ports:
- 1433:1433
env:
ACCEPT_EULA: 'Y'
MSSQL_SA_PASSWORD: 'ArkSpecFlow123Stella!'

steps:
- name: 'Checkout'
uses: actions/checkout@v4
Expand Down

0 comments on commit e9b5ea7

Please sign in to comment.