removed quotes and use ${{github.workspace}} instead of $env:GITHUB_WORKSPACE for upload-artifact

This commit is contained in:
Benjamin Gebauer 2023-05-31 12:55:55 +02:00
parent 52601b1540
commit 65b6655a08

View file

@ -26,9 +26,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: installer
path: "$env:GITHUB_WORKSPACE/test.txt"
path: ${{github.workspace}}/test.txt
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: files
path: "$env:GITHUB_WORKSPACE/files/**/*"
path: ${{github.workspace}}/files/**/*