We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af6a9f commit a9c6863Copy full SHA for a9c6863
.github/workflows/build.yml
@@ -15,9 +15,15 @@ jobs:
15
- uses: actions/checkout@v2
16
- run: sh Scripts/ci.sh
17
id: script
18
+ - name: Commit
19
+ uses: EndBug/add-and-commit@v7
20
+ with:
21
+ add: 'Package.swift Sources'
22
+ message: "add ${{ steps.script.outputs.tag }}"
23
- name: Release
24
uses: "marvinpinto/action-automatic-releases@latest"
25
with:
26
repo_token: "${{ secrets.GITHUB_TOKEN }}"
27
automatic_release_tag: "${{ steps.script.outputs.tag }}"
28
files: 'kivy-ios/*.xcframework.zip'
29
+ prerelease: false
Scripts/ci.sh
@@ -7,6 +7,3 @@ TAG=0.0.`date +%Y%m%d%H%M%S`
7
sh Scripts/package.sh $TAG
8
9
echo "::set-output name=tag::$TAG"
10
-
11
-git add Package.swift
12
-git commit -m "add $TAG"
0 commit comments