diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ab71f95..0bccb1e 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -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: