removed quotes and use ${{github.workspace}} instead of $env:GITHUB_WORKSPACE for upload-artifact
This commit is contained in:
parent
52601b1540
commit
65b6655a08
1 changed files with 2 additions and 2 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -26,9 +26,9 @@ jobs:
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: installer
|
name: installer
|
||||||
path: "$env:GITHUB_WORKSPACE/test.txt"
|
path: ${{github.workspace}}/test.txt
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: files
|
name: files
|
||||||
path: "$env:GITHUB_WORKSPACE/files/**/*"
|
path: ${{github.workspace}}/files/**/*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue