diff --git a/.gitea/workflows/sonarqube_scans.yml b/.gitea/workflows/sonarqube_scans.yml index c0e284c..a7ddb8d 100644 --- a/.gitea/workflows/sonarqube_scans.yml +++ b/.gitea/workflows/sonarqube_scans.yml @@ -29,15 +29,16 @@ jobs: - name: Compile assets run: APP_ENV=build php bin/console asset-map:compile - - - name: Create artifact - run: | - file="${{ gitea.REF_NAME }}.tar.gz" - touch $file - tar -czf $file --exclude=$file . +# +# - name: Create artifact +# run: | +# file="${{ gitea.REF_NAME }}.tar.gz" +# touch $file +# tar -czf $file --exclude=$file . - name: Upload artifact - uses: akkuman/gitea-release-action@v1 + uses: actions/upload-artifact@v3 with: - files: | - "${{ gitea.REF_NAME }}.tar.gz" + name: "${{ gitea.REF_NAME }}.tar.gz" + path: "${{ gitea.REF_NAME }}.tar.gz" + compression_level: 9