-
Notifications
You must be signed in to change notification settings - Fork 43
34 lines (30 loc) · 797 Bytes
/
build.yml
File metadata and controls
34 lines (30 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build
on:
push:
branches: [ kivy-ios ]
pull_request:
branches: [ kivy-ios ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: python --version
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- run: python --version
- run: sh Scripts/ci.sh
id: script
- name: Commit
uses: EndBug/add-and-commit@v7
with:
add: 'Package.swift Sources'
message: "add ${{ steps.script.outputs.tag }}"
- name: Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.script.outputs.tag }}"
files: 'kivy-ios/*.xcframework.zip'
prerelease: false