test #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: DayZ SRP Sakhal Mods | |
| on: | |
| push: | |
| branches: | |
| - release | |
| jobs: | |
| dayz_srp_sakhal: | |
| name: Pack release pbos | |
| runs-on: windows-latest | |
| steps: | |
| - name: Install Mikero Tools | |
| uses: arma-actions/mikero-tools@latest | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| path: source | |
| - name: Make mod folders | |
| run: | | |
| cd ${{ github.workspace }} | |
| mkdir mods | |
| echo ${{ github.workspace }}\source | |
| echo ${{ github.workspace }}\mods | |
| - name: Pack Project With PboProject | |
| run: | | |
| Get-Command pboproject | |
| pboProject +Z +H +J +Q -E=dayz "${{ github.workspace }}\source" +M=${{ github.workspace }}\mods -X="*.h,*.hpp,*.png,*.cpp,*.txt,thumbs.db,*.dep,*.bak,*.log,*.pew,source,*.tga,*.bat,*.psd,*.cmd,*.mcr,*.fbx,*.max" | |
| - name: Validate Packing | |
| run: | | |
| pwd | |
| cd ${{ github.workspace }}\mods | |
| pwd | |
| dir |