diff --git a/.github/workflows/macos_arm64.yml b/.github/workflows/macos_arm64.yml new file mode 100644 index 0000000..07ab1ca --- /dev/null +++ b/.github/workflows/macos_arm64.yml @@ -0,0 +1,18 @@ +name: macOS Silicon Build +on: workflow_dispatch +jobs: + build-macos: + runs-on: macos-11.0 + name: Build on darwin-arm64 + steps: + - name: Update binaries + run: | + git clone --recursive https://github.com/cirospaciari/socketify.py.git + cd socketify.py/src/socketify/native + make macos-arm64 + cd ../ + git add libsocketify_darwin_arm64.so + git config --global user.email "ciro.spaciari@gmail.com" + git config --global user.name "Ciro Spaciari" + git commit -m "[GitHub Actions] Updated darwin-arm64 binaries" || true + git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git" \ No newline at end of file