Merge branch 'synfig:master' into master #1
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
# This is a basic workflow to help you get started with Actions | |
name: Synfig CI (Self-Hosted) | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build-osx: | |
runs-on: osx-10.9 | |
continue-on-error: false | |
name: "Synfig Studio (OSX package)" | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: "Synfig Studio (OSX package)" | |
run: | | |
../../../morevna-builds.osx/build-synfig.sh https://github.com/$GITHUB_REPOSITORY $GITHUB_REF | |
build-source-tarballs: | |
runs-on: Linux | |
continue-on-error: false | |
name: "Synfig Studio (source tarballs)" | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Synfig Studio (source tarballs)" | |
run: | | |
./autobuild/synfigstudio-release.sh |