CI: replace Docker-based armake2 with direct cargo install
Some checks failed
Build Mission PBO / pack (push) Failing after 5s
Build Mission PBO / deploy (push) Has been skipped

This commit is contained in:
2026-06-11 01:39:47 +02:00
parent 6ad0a00056
commit 110e7e9653

View File

@@ -16,29 +16,20 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install armake2
run: cargo install armake2
- name: Pack mission folder into PBO - name: Pack mission folder into PBO
run: | run: armake2 pack "$PWD" "${{ env.PBO_NAME }}"
docker run --rm \
-v "${{ github.workspace }}:/workspace" \
-w /workspace \
arwynfr/armake2:debian \
pack \
/workspace \
"${{ env.PBO_NAME }}"
- name: Verify PBO integrity - name: Verify PBO integrity
run: | run: armake2 inspect "${{ env.PBO_NAME }}"
docker run --rm \
-v "${{ github.workspace }}:/workspace" \
-w /workspace \
arwynfr/armake2:debian \
inspect "${{ env.PBO_NAME }}"
- name: Upload PBO as artifact - name: Upload PBO as artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ env.PBO_NAME }} name: ${{ env.PBO_NAME }}
path: ${{ env.PBO_NAME }} path: ${{ github.workspace }}/${{ env.PBO_NAME }}
deploy: deploy:
if: false if: false