Compare commits

2 Commits

Author SHA1 Message Date
4cc3f9c889 attempt fix for CI upload
All checks were successful
Build Mission PBO / pack (push) Successful in 15s
Build Mission PBO / deploy (push) Has been skipped
2026-06-11 01:41:34 +02:00
8b153bb106 Revert "CI: replace Docker-based armake2 with direct cargo install"
This reverts commit 110e7e9653.
2026-06-11 01:40:25 +02:00

View File

@@ -16,20 +16,29 @@ 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: armake2 pack "$PWD" "${{ env.PBO_NAME }}" run: |
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: armake2 inspect "${{ env.PBO_NAME }}" run: |
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: ${{ github.workspace }}/${{ env.PBO_NAME }} path: ./${{ env.PBO_NAME }}
deploy: deploy:
if: false if: false