Clean up of comments
All checks were successful
Build Mission PBO / pack (push) Successful in 9s
Build Mission PBO / deploy (push) Has been skipped

This commit is contained in:
MrFastwind
2026-06-14 01:56:47 +02:00
parent 7c2e53b78f
commit 970fe97875

View File

@@ -16,8 +16,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: ls -alh
- run: mkdir build
- name: Pack mission folder into PBO
@@ -25,36 +23,6 @@ jobs:
with:
args: pack src "build/${{ env.PBO_NAME }}"
# - name: Pack mission folder into PBO
# run: |
# docker run --name packer \
# --user "$(id -u):$(id -g)" \
# -v "${{ github.workspace }}:/workspace" \
# -w /workspace \
# --entrypoint /bin/bash \
# arwynfr/armake2:debian -c ' \
# armake2 pack /workspace "${{ env.PBO_NAME }}"; \
# armake2 inspect "./${{ env.PBO_NAME }}"'
# - name: Copy mission PBO
# run: |
# docker cp packer:/workspace/${{ env.PBO_NAME }} .
- run: ls -alh
# - name: Cleanup Packer Container
# # if: always() garantisce l'esecuzione anche se i passaggi sopra falliscono
# if: always()
# run: |
# docker rm -f packer || true
# - name: Verify PBO integrity
# run: |
# docker run --rm \
# -v "${{ github.workspace }}:/workspace" \
# -w /workspace \
# arwynfr/armake2:debian \
# inspect "./${{ env.PBO_NAME }}"
- name: Verify PBO integrity
uses: docker://arwynfr/armake2:debian
with: