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
|
apk add nodejs npm
|
||||||
node --version
|
node --version
|
||||||
npm --version
|
npm --version
|
||||||
- name: Download build artifacts
|
|
||||||
uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: output
|
|
||||||
path: ./output
|
|
||||||
- name: List files (before checkout)
|
- name: List files (before checkout)
|
||||||
run: |
|
run: |
|
||||||
echo "Current directory:"
|
echo "Current directory:"
|
||||||
|
|
@ -71,13 +66,15 @@ jobs:
|
||||||
echo "==============================="
|
echo "==============================="
|
||||||
echo "Content of current directory:"
|
echo "Content of current directory:"
|
||||||
ls -all
|
ls -all
|
||||||
echo "==============================="
|
|
||||||
echo "Content of output directory:"
|
|
||||||
ls -all ./output
|
|
||||||
- name: Code checkout
|
- name: Code checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
- name: Download build artifacts
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: output
|
||||||
|
path: ./output
|
||||||
- name: List files (after checkout)
|
- name: List files (after checkout)
|
||||||
run: |
|
run: |
|
||||||
echo "Current directory:"
|
echo "Current directory:"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue