Skip to content

Commit 9869e65

Browse files
committed
Put template expansion back into step parameters
1 parent b9d84fc commit 9869e65

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci-manual-build-test-sign.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
8484
with:
8585
name: build-artifacts
86-
path: $NUPKG_DIRECTORY/*
86+
path: ${{ env.NUPKG_DIRECTORY }}/*
8787
retention-days: 7
8888

8989
sign:
@@ -106,7 +106,7 @@ jobs:
106106
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
107107
with:
108108
name: build-artifacts
109-
path : $NUPKG_DIRECTORY
109+
path : ${{ env.NUPKG_DIRECTORY }}
110110

111111
- name: List assets to be signed
112112
shell: pwsh
@@ -130,7 +130,7 @@ jobs:
130130
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
131131
with:
132132
name: signed-artifacts
133-
path: $NUPKG_DIRECTORY/*
133+
path: ${{env.NUPKG_DIRECTORY}}/*
134134
retention-days: 7
135135

136136
publish:
@@ -154,7 +154,7 @@ jobs:
154154
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
155155
with:
156156
name: signed-artifacts
157-
path : $NUPKG_DIRECTORY
157+
path : ${{ env.NUPKG_DIRECTORY }}
158158

159159
- name: List assets to be published
160160
shell: pwsh

0 commit comments

Comments
 (0)