Skip to content

Commit

Permalink
formatted the .yml workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sak32009 committed Aug 25, 2024
1 parent 1b68c4b commit 91eff29
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/emu-build-all-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
id: "emu-deps-cache-step"
uses: actions/cache@v4
with:
key: ${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}
path: ${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}
key: "${{ env.DEPS_CACHE_KEY }}-${{ env.PREMAKE_ACTION }}"
path: "${{ env.DEPS_CACHE_DIR }}/${{ env.PREMAKE_ACTION }}"

# extra helpers/tools, these are not built inside the deps build dir
- name: "Clone third-party build helpers (common/linux)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/emu-build-all-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# on Windows Git will auto change line ending to CRLF, not preferable
- name: "Ensure LF line ending"
shell: "cmd"
working-directory: ${{ github.workspace }}
working-directory: "${{ github.workspace }}"
run: |
git config --local core.autocrlf false
git config --system core.autocrlf false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/migrate_gse-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
script-win:
name: "Migrate GSE win"
if: ${{ !cancelled() }}
uses: ./.github/workflows/migrate_gse-build-win.yml
uses: "./.github/workflows/migrate_gse-build-win.yml"

script-linux:
name: "Migrate GSE linux"
if: ${{ !cancelled() }}
uses: ./.github/workflows/migrate_gse-build-linux.yml
uses: "./.github/workflows/migrate_gse-build-linux.yml"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
# fix folder permissions! not sure why this fails
# nested subdirs "build/linux/release" cause permission problems
- name: "Give all permissions to repo folder"
shell: bash
shell: "bash"
working-directory: "${{ github.workspace }}"
run: sudo chmod -R 777 "${{ github.workspace }}" && sudo chmod 777 package_linux.sh

Expand Down

0 comments on commit 91eff29

Please sign in to comment.