Bump pyinstaller from 5.8 to 6.10.0 #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build DMG for PRs | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pre_job: | |
name: Path match check | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
github_token: ${{ github.token }} | |
latest_kolibri_release: | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
runs-on: ubuntu-latest | |
outputs: | |
whl-url: ${{ steps.get_latest_kolibri_release.outputs.result }} | |
steps: | |
- name: Get latest Kolibri release | |
id: get_latest_kolibri_release | |
uses: actions/github-script@v7 | |
with: | |
result-encoding: string | |
script: | | |
const { data: releases } = await github.rest.repos.listReleases({ | |
owner: 'learningequality', | |
repo: 'kolibri', | |
per_page: 1, | |
page: 1, | |
}); | |
const latestRelease = releases[0]; | |
const whlAsset = latestRelease.assets.find(asset => asset.name.endsWith('.whl')); | |
const whlUrl = whlAsset.browser_download_url; | |
return whlUrl; | |
build_dmg: | |
name: Build Unsigned DMG | |
needs: [pre_job, latest_kolibri_release] | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
uses: ./.github/workflows/build_mac.yml | |
with: | |
whl-url: ${{ needs.latest_kolibri_release.outputs.whl-url }} |