Skip to content

Commit d5cbc72

Browse files
Refactor Azure CI/CD workflow for job-helper-app
Updated working directory paths and artifact upload location.
1 parent 080ad67 commit d5cbc72

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/api_job-helper-app.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ jobs:
2525

2626
- name: Build with dotnet
2727
run: dotnet build --configuration Release
28-
working-directory: ./backend
28+
working-directory: ./backend/JobHelper.csproj
2929

3030
- name: dotnet publish
3131
run: dotnet publish -c Release -o ${{github.workspace}}/myapp
32-
working-directory: ./backend
32+
working-directory: ./backend/JobHelper.csproj
3333

3434
- name: Upload artifact for deployment job
3535
uses: actions/upload-artifact@v4
3636
with:
3737
name: .net-app
38-
path: ${{github.workspace}}/myapp
38+
path: ${{env.DOTNET_ROOT}}/myapp
3939

4040
deploy:
4141
runs-on: windows-latest
@@ -65,3 +65,4 @@ jobs:
6565
slot-name: 'Production'
6666
package: .
6767

68+

0 commit comments

Comments
 (0)