Reordering actions
This commit is contained in:
parent
2d3aa249c1
commit
22a102fcbd
1 changed files with 5 additions and 8 deletions
13
.github/workflows/sonar.yml
vendored
13
.github/workflows/sonar.yml
vendored
|
|
@ -59,11 +59,6 @@ jobs:
|
|||
apk add nodejs npm
|
||||
node --version
|
||||
npm --version
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: output
|
||||
path: ./output
|
||||
- name: List files (before checkout)
|
||||
run: |
|
||||
echo "Current directory:"
|
||||
|
|
@ -71,13 +66,15 @@ jobs:
|
|||
echo "==============================="
|
||||
echo "Content of current directory:"
|
||||
ls -all
|
||||
echo "==============================="
|
||||
echo "Content of output directory:"
|
||||
ls -all ./output
|
||||
- name: Code checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: output
|
||||
path: ./output
|
||||
- name: List files (after checkout)
|
||||
run: |
|
||||
echo "Current directory:"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue