Skip to content

Merge pull request #25 from auouymous/update-deps #52

Merge pull request #25 from auouymous/update-deps

Merge pull request #25 from auouymous/update-deps #52

Workflow file for this run

name: build and bundle
on: [push, pull_request]
jobs:
build-and-bundle:
name: build
if: >-
github.event_name == 'push' ||
github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch tags
- run: ./bootstrap.sh
- run: ./build.sh
- run: ./bundle.sh
- run: ./release.sh _build/pythonbase.app $(git describe --tags)
- run: rm -Rf _build/pythonbase.app/ _build/run-*
- uses: actions/upload-artifact@v4
with:
name: bundle
path: /Users/runner/work/gpodder-osx-bundle/gpodder-osx-bundle/_build
retention-days: 30