Skip to content

Commit

Permalink
Move build.yaml up a directory
Browse files Browse the repository at this point in the history
- GitHub Actions requires workflows to be defined in .github/workflows, not in subdirs
  • Loading branch information
JesseTG committed Jul 9, 2023
1 parent 5d073f2 commit 48acb70
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
File renamed without changes.
12 changes: 6 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
windows:
name: Windows (x86_64)
uses: ./.github/workflows/shared/build.yaml
uses: ./.github/workflows/build.yaml
with:
archive-name: melondsds_libretro-win32-x86_64
runs-on: windows-latest
Expand All @@ -22,7 +22,7 @@ jobs:
macos:
name: macOS (Universal)
uses: ./.github/workflows/shared/build.yaml
uses: ./.github/workflows/build.yaml
with:
archive-name: melondsds_libretro-macos-universal
runs-on: macos-latest
Expand All @@ -32,7 +32,7 @@ jobs:
linux-x86_64:
name: Linux (x86_64)
uses: ./.github/workflows/shared/build.yaml
uses: ./.github/workflows/build.yaml
with:
archive-name: melondsds_libretro-linux-x86_64
runs-on: ubuntu-latest
Expand All @@ -46,7 +46,7 @@ jobs:
linux-aarch64:
name: Linux (aarch64)
uses: ./.github/workflows/shared/build.yaml
uses: ./.github/workflows/build.yaml
with:
archive-name: melondsds_libretro-linux-aarch64
runs-on: ubuntu-latest
Expand All @@ -62,7 +62,7 @@ jobs:
android:
name: Android
uses: ./.github/workflows/shared/build.yaml
uses: ./.github/workflows/build.yaml
with:
lib-ext: .so
archive-name: melondsds_libretro-android
Expand All @@ -72,7 +72,7 @@ jobs:

ios:
name: iOS
uses: ./.github/workflows/shared/build.yaml
uses: ./.github/workflows/build.yaml
with:
runs-on: macos-latest
archive-name: melondsds_libretro-ios
Expand Down

0 comments on commit 48acb70

Please sign in to comment.