We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a93e36 commit 5ec8ac5Copy full SHA for 5ec8ac5
.github/workflows/docker-image.yml
@@ -12,7 +12,14 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v4
+ - name: Checkout
16
+ uses: actions/checkout@v2
17
+
18
+ - name: Setup .NET
19
+ uses: actions/setup-dotnet@v1
20
+ with:
21
+ dotnet-version: '9.x'
22
23
- name: Build the Docker image
- working-directory: ./AniWorldReminder_API
- run: docker build . --file Dockerfile
24
+ working-directory: path
25
+ run: docker build .
0 commit comments