Skip to content

Commit a9c6863

Browse files
committed
fix CI
1 parent 6af6a9f commit a9c6863

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

+6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,15 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- run: sh Scripts/ci.sh
1717
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 }}"
1823
- name: Release
1924
uses: "marvinpinto/action-automatic-releases@latest"
2025
with:
2126
repo_token: "${{ secrets.GITHUB_TOKEN }}"
2227
automatic_release_tag: "${{ steps.script.outputs.tag }}"
2328
files: 'kivy-ios/*.xcframework.zip'
29+
prerelease: false

Scripts/ci.sh

-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,3 @@ TAG=0.0.`date +%Y%m%d%H%M%S`
77
sh Scripts/package.sh $TAG
88

99
echo "::set-output name=tag::$TAG"
10-
11-
git add Package.swift
12-
git commit -m "add $TAG"

0 commit comments

Comments
 (0)