Reordering actions
All checks were successful
Sonar / SonarQube (push) Successful in 51s
Sonar / Docker stuff (push) Successful in 4s

This commit is contained in:
Liviu Burcusel 2025-12-08 16:13:07 +01:00
parent 2d3aa249c1
commit 22a102fcbd
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C

View file

@ -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:"