Fix workflow: remove upload-artifact dependency
Some checks failed
Compile apt-layer / compile (push) Failing after 0s

This commit is contained in:
robojerk 2025-07-14 21:29:51 -07:00
parent 29b9675689
commit a9a9264618

View file

@ -187,21 +187,26 @@ jobs:
echo "Both compiled scripts are self-contained and ready for use!" echo "Both compiled scripts are self-contained and ready for use!"
} > COMPILATION_REPORT.md } > COMPILATION_REPORT.md
- name: Upload compilation report - name: Create artifacts directory
uses: actions/upload-artifact@v4 run: |
with: mkdir -p artifacts
name: compilation-report cp apt-layer.sh artifacts/
path: COMPILATION_REPORT.md cp install-apt-layer.sh artifacts/
retention-days: 30 cp COMPILATION_REPORT.md artifacts/
- name: Upload compiled scripts - name: Display compilation results
uses: actions/upload-artifact@v4 run: |
with: echo "=========================================="
name: apt-layer-compiled echo "📦 COMPILATION COMPLETED SUCCESSFULLY"
path: | echo "=========================================="
apt-layer.sh echo ""
install-apt-layer.sh echo "Generated files:"
retention-days: 30 echo "✅ apt-layer.sh ($(du -h apt-layer.sh | cut -f1))"
echo "✅ install-apt-layer.sh ($(du -h install-apt-layer.sh | cut -f1))"
echo "✅ COMPILATION_REPORT.md"
echo ""
echo "Files are available in the artifacts/ directory"
echo "=========================================="
- name: Commit compiled scripts (if on main/master) - name: Commit compiled scripts (if on main/master)
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'