Skip to content

Commit 9aa94ed

Browse files
add "Setup Dotnet sdk" step to "publish_docker" to see if this fixes the dotnet version error on build
bug: runner complains about dotnet 8.0 not being supported on nuget restore hypothesis: something wrong with dotnet setup in "publish_docker"
1 parent 81316f7 commit 9aa94ed

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/BuildTestDeploy.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,11 @@ jobs:
108108
uses: actions/checkout@v3
109109
with:
110110
submodules: true
111+
112+
- name: Setup Dotnet sdk
113+
uses: actions/setup-dotnet@v3
114+
with:
115+
dotnet-version: 8.0.x
111116

112117
- name: Set env
113118
run: |
@@ -120,6 +125,6 @@ jobs:
120125
- name: Push container
121126
run: |
122127
echo ${{secrets.DOCKER_HUB_DEPLOY_KEY}} | docker login --username ${{secrets.DOCKER_HUB_USER}} --password-stdin
123-
docker push digitalproductionaachen/ovf-grpc:$RELEASE_VERSION
124-
docker tag digitalproductionaachen/ovf-grpc:$RELEASE_VERSION digitalproductionaachen/ovf-grpc:latest
125-
docker push digitalproductionaachen/ovf-grpc:latest
128+
#docker push digitalproductionaachen/ovf-grpc:$RELEASE_VERSION
129+
#docker tag digitalproductionaachen/ovf-grpc:$RELEASE_VERSION #digitalproductionaachen/ovf-grpc:latest
130+
#docker push digitalproductionaachen/ovf-grpc:latest

0 commit comments

Comments
 (0)