Skip to content

Commit

Permalink
Merge branch '5.4.4' into 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apotocki committed Apr 30, 2023
2 parents 7af26b4 + f01dc62 commit 2ea8740
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build LUA
on:
release:
types: [published]
push:
tags:
- 5.**
workflow_dispatch:
jobs:
Build:
runs-on: macos-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
- name: Build
run: |
scripts/build.sh
for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
cd frameworks
mv Headers include
zip -9 -r include.zip include
wait
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
frameworks/*.zip
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The latest supported LUA version is taken from: https://www.lua.org/ftp/lua-5.4.
cd lua-iosx
scripts/build.sh
# have fun, the result artifacts will be located in 'frameworks' folder.
# have fun, the result artifacts will be located in 'frameworks' folder.
```
- Use cocoapods. Add the following lines into your project's Podfile:
```
Expand Down
2 changes: 1 addition & 1 deletion lua-iosx.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "lua-iosx"
s.version = "5.4.4.3"
s.version = "5.4.5.0"
s.summary = "LUA XCFramework for macOS and iOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst and Simulator."
s.homepage = "https://github.com/apotocki/lua-iosx"
s.license = "MIT"
Expand Down

0 comments on commit 2ea8740

Please sign in to comment.