fix permissions issue in workflow

This commit is contained in:
2024-09-28 16:26:53 -05:00
parent 8c1af277f1
commit f5e4567e90

View File

@@ -12,8 +12,7 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:matrix:
matrix:
unityVersion: unityVersion:
- 2022.3.42f1 - 2022.3.42f1
targetPlatform: targetPlatform:
@@ -47,6 +46,8 @@ jobs:
- name: Fix Build Folder - name: Fix Build Folder
run: | run: |
rm -rf ./build/${{ matrix.targetPlatform }}/Galagan_BurstDebugInformation_DoNotShip/ rm -rf ./build/${{ matrix.targetPlatform }}/Galagan_BurstDebugInformation_DoNotShip/
chown -R $USER:$USER ./build
chmod -R 777 ./build
mv ./build/${{ matrix.targetPlatform}}/ ./build/Galagan/ mv ./build/${{ matrix.targetPlatform}}/ ./build/Galagan/
- name: Upload artifact - name: Upload artifact