SUGMA handling for non-fatal exception on world close #374
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: Aristeas NewUniversalUpload | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - stable | |
| jobs: | |
| UploadMods: | |
| if: github.repository_owner == 'StarCoreSE' || github.repository_owner == 'ari-steas' | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v4.1.4 | |
| with: | |
| fetch-depth: 0 | |
| #- name: List all changed files | |
| # env: | |
| # ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} | |
| # run: | | |
| # for file in ${ALL_CHANGED_FILES}; do | |
| # echo "$file was changed" | |
| # done | |
| - id: test_SEWT | |
| run: | | |
| & "C:\Program Files\SCUniversalUpload\SC_NewUniversalUpload.exe" --repo "${{ github.workspace }}" --changelog "${{ github.event.head_commit.message }}" | |
| - uses: EndBug/add-and-commit@v9 |