mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 11:15:34 +08:00
formatted the .yml workflows
This commit is contained in:
parent
1b68c4bb0e
commit
91eff290a0
4
.github/workflows/emu-build-all-linux.yml
vendored
4
.github/workflows/emu-build-all-linux.yml
vendored
@ -57,8 +57,8 @@ jobs:
|
|||||||
id: "emu-deps-cache-step"
|
id: "emu-deps-cache-step"
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
|
key: "${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}"
|
||||||
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
|
path: "${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}"
|
||||||
|
|
||||||
# extra helpers/tools, these are not built inside the deps build dir
|
# extra helpers/tools, these are not built inside the deps build dir
|
||||||
- name: "Clone third-party build helpers (common/linux)"
|
- name: "Clone third-party build helpers (common/linux)"
|
||||||
|
2
.github/workflows/emu-build-all-win.yml
vendored
2
.github/workflows/emu-build-all-win.yml
vendored
@ -54,7 +54,7 @@ jobs:
|
|||||||
# on Windows Git will auto change line ending to CRLF, not preferable
|
# on Windows Git will auto change line ending to CRLF, not preferable
|
||||||
- name: "Ensure LF line ending"
|
- name: "Ensure LF line ending"
|
||||||
shell: "cmd"
|
shell: "cmd"
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: "${{ github.workspace }}"
|
||||||
run: |
|
run: |
|
||||||
git config --local core.autocrlf false
|
git config --local core.autocrlf false
|
||||||
git config --system core.autocrlf false
|
git config --system core.autocrlf false
|
||||||
|
@ -14,9 +14,9 @@ jobs:
|
|||||||
script-win:
|
script-win:
|
||||||
name: "Migrate GSE win"
|
name: "Migrate GSE win"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/migrate_gse-build-win.yml
|
uses: "./.github/workflows/migrate_gse-build-win.yml"
|
||||||
|
|
||||||
script-linux:
|
script-linux:
|
||||||
name: "Migrate GSE linux"
|
name: "Migrate GSE linux"
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
uses: ./.github/workflows/migrate_gse-build-linux.yml
|
uses: "./.github/workflows/migrate_gse-build-linux.yml"
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -127,7 +127,7 @@ jobs:
|
|||||||
# fix folder permissions! not sure why this fails
|
# fix folder permissions! not sure why this fails
|
||||||
# nested subdirs "build/linux/release" cause permission problems
|
# nested subdirs "build/linux/release" cause permission problems
|
||||||
- name: "Give all permissions to repo folder"
|
- name: "Give all permissions to repo folder"
|
||||||
shell: bash
|
shell: "bash"
|
||||||
working-directory: "${{ github.workspace }}"
|
working-directory: "${{ github.workspace }}"
|
||||||
run: sudo chmod -R 777 "${{ github.workspace }}" && sudo chmod 777 package_linux.sh
|
run: sudo chmod -R 777 "${{ github.workspace }}" && sudo chmod 777 package_linux.sh
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user