Skip to content

Commit f0f4bf3

Browse files
committed
hidden .azurefunctions folder artifact fix
Azure/azure-functions-dotnet-worker#1240 (comment)
1 parent b984e4c commit f0f4bf3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/AHK.GradeManagement-build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ jobs:
4444
run: dotnet publish Ahk.GradeManagement.Api/Ahk.GradeManagement.Api.csproj --no-restore --configuration Release --output '${{ github.workspace }}/output/Ahk.GradeManagement.Api'
4545

4646
- name: Upload artifact
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v4.4.0
4848
with:
4949
name: ${{ env.artifactName }}
5050
path: ./output # Put the path to the build artifact files directory here.
51+
if-no-files-found: error
52+
include-hidden-files: true
53+

.github/workflows/AHK.GradeManagement.QueueFunction-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
run: dotnet publish Ahk.GradeManagement.QueueFunction/Ahk.GradeManagement.QueueFunction.csproj --no-restore --configuration Release --output '${{ github.workspace }}/output/Ahk.GradeManagement.QueueFunction'
4545

4646
- name: Upload artifact
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v4.4.0
4848
with:
4949
name: ${{ env.artifactName }}
5050
path: ./output # Put the path to the build artifact files directory here.
51+
if-no-files-found: error
52+
include-hidden-files: true

0 commit comments

Comments
 (0)