Skip to content

Commit

Permalink
Update release workflow to properly self-reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtibbles committed Mar 20, 2024
1 parent cc4e25f commit 9c58909
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ on:
tar-url:
required: false
type: string
ref:
description: 'A ref for this workflow to check out its own repo'
required: false
type: string
signed:
description: 'Should this be signed with the development key? (mutually exclusive with release)'
required: false
Expand Down Expand Up @@ -90,12 +86,9 @@ jobs:
echo "Must specify only one reference for the tar file to build the APK with."
exit 1
- uses: actions/checkout@v4
if: ${{ !inputs.ref }}
- uses: actions/checkout@v4
if: ${{ inputs.ref }}
with:
repository: learningequality/kolibri-installer-android
ref: ${{ inputs.ref }}
repository: ${{ github.action_repository }}
ref: ${{ github.action_ref }}
- name: Get SHA of current commit
id: get-commit
# Note that we do this, so that we get the same commit regardless
Expand Down
11 changes: 2 additions & 9 deletions .github/workflows/release_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ on:
description: 'The version code to promote to the open testing track'
required: true
type: string
ref:
description: 'A ref for this workflow to check out its own repo'
required: true
type: string
secrets:
KOLIBRI_ANDROID_PLAY_STORE_API_SERVICE_ACCOUNT_JSON:
required: false
Expand All @@ -29,12 +25,9 @@ jobs:
SERVICE_ACCOUNT_JSON: '${{ secrets.KOLIBRI_ANDROID_PLAY_STORE_API_SERVICE_ACCOUNT_JSON }}'
steps:
- uses: actions/checkout@v4
if: ${{ !inputs.ref }}
- uses: actions/checkout@v4
if: ${{ inputs.ref }}
with:
repository: learningequality/kolibri-android-installer
ref: ${{ inputs.ref }}
repository: ${{ github.action_repository }}
ref: ${{ github.action_ref }}
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit 9c58909

Please sign in to comment.