summaryrefslogtreecommitdiffstats
path: root/.github/workflows/android-publish.yml
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-04 21:50:54 +0100
committerGitHub <noreply@github.com>2024-01-04 21:50:54 +0100
commitb125cb97a2281d8b1cdde29828a32b147279af38 (patch)
tree379788ece13af1fc428558239a4282797dbaabef /.github/workflows/android-publish.yml
parentMerge pull request #12558 from t895/zip-storage-method (diff)
parentactions: android: Prevent resolving tag commit to PR link (diff)
downloadyuzu-b125cb97a2281d8b1cdde29828a32b147279af38.tar
yuzu-b125cb97a2281d8b1cdde29828a32b147279af38.tar.gz
yuzu-b125cb97a2281d8b1cdde29828a32b147279af38.tar.bz2
yuzu-b125cb97a2281d8b1cdde29828a32b147279af38.tar.lz
yuzu-b125cb97a2281d8b1cdde29828a32b147279af38.tar.xz
yuzu-b125cb97a2281d8b1cdde29828a32b147279af38.tar.zst
yuzu-b125cb97a2281d8b1cdde29828a32b147279af38.zip
Diffstat (limited to '.github/workflows/android-publish.yml')
-rw-r--r--.github/workflows/android-publish.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/android-publish.yml b/.github/workflows/android-publish.yml
index 8f46fcf74..68e21c2f2 100644
--- a/.github/workflows/android-publish.yml
+++ b/.github/workflows/android-publish.yml
@@ -16,7 +16,7 @@ on:
jobs:
android:
runs-on: ubuntu-latest
- if: ${{ github.event.inputs.android != 'false' && github.repository == 'yuzu-emu/yuzu' }}
+ if: ${{ github.event.inputs.android != 'false' && github.repository == 'yuzu-emu/yuzu-android' }}
steps:
# this checkout is required to make sure the GitHub Actions scripts are available
- uses: actions/checkout@v3
@@ -33,7 +33,7 @@ jobs:
script: |
if (context.payload.inputs && context.payload.inputs.android === 'true') return true;
const checkAndroidChanges = require('./.github/workflows/android-merge.js').checkAndroidChanges;
- return checkAndroidChanges(github, context);
+ return checkAndroidChanges(github);
- run: npm install execa@5
if: ${{ steps.check-changes.outputs.result == 'true' }}
- uses: actions/checkout@v3