File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,23 @@ jobs:
1919 azurite :
2020 image : mcr.microsoft.com/azure-storage/azurite
2121 options : --name azurite-storage
22+ env :
23+ AZURITE_BLOB_HOST : 0.0.0.0
24+
2225
2326 steps :
2427 - name : Checkout Repository
2528 uses : actions/checkout@v4
2629 with :
2730 submodules : ' true'
2831
29- - name : Start Azurite with --skipApiVersionCheck
30- run : docker exec azurite-storage azurite --silent --skipApiVersionCheck
32+ - name : Verify Azurite is Running
33+ run : docker ps --filter "name=azurite-storage"
34+
35+ - name : Apply --skipApiVersionCheck to Running Azurite
36+ run : |
37+ docker exec azurite-storage pkill -f "azurite"
38+ docker exec azurite-storage azurite --silent --skipApiVersionCheck &
3139
3240 - name : Setup .NET
3341 uses : actions/setup-dotnet@v4
You can’t perform that action at this time.
0 commit comments