Skip to content

Commit b29c641

Browse files
authored
Update build.yml
1 parent 45d9a6c commit b29c641

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Restore dependencies
4545
run: dotnet restore ${{ env.PROJECT_PATH }}
4646

47-
- name: Publish single-file executable (${ { matrix.runtime } })
47+
- name: Publish single-file executable (${{ matrix.runtime }})
4848
run: |
4949
dotnet publish ${{ env.PROJECT_PATH }} \
5050
-c ${{ env.CONFIGURATION }} \
@@ -54,15 +54,15 @@ jobs:
5454
/p:PublishTrimmed=true \
5555
/p:TrimMode=Link
5656
57-
- name: Zip published output (${ { matrix.runtime } })
57+
- name: Zip published output (${{ matrix.runtime }})
5858
run: |
5959
RUNTIME_DIR=src/PrintZPL.Host/bin/${{ env.CONFIGURATION }}/${{ env.FRAMEWORK }}/${{ matrix.runtime }}/publish
6060
ZIP_NAME=PrintZPL-${{ matrix.runtime }}.zip
6161
cd $RUNTIME_DIR
6262
zip -r ${{ github.workspace }}/$ZIP_NAME .
6363
6464
- name: Upload artifact for ${{ matrix.runtime }}
65-
uses: actions/upload-artifact@v3
65+
uses: actions/upload-artifact@v2
6666
with:
6767
name: PrintZPL-${{ matrix.runtime }}
6868
path: PrintZPL-${{ matrix.runtime }}.zip

0 commit comments

Comments
 (0)