-
-
Notifications
You must be signed in to change notification settings - Fork 62
18 lines (18 loc) · 688 Bytes
/
macos.yml
File metadata and controls
18 lines (18 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: macOS Build
on: workflow_dispatch
jobs:
build-macos:
runs-on: macos-11.0
name: Build on darwin-amd64
steps:
- name: Update binaries
run: |
git clone --recursive https://github.com/cirospaciari/socketify.py.git
cd socketify.py/src/socketify/native
make macos
cd ../
git add libsocketify_darwin_amd64.so
git config --global user.email "ciro.spaciari@gmail.com"
git config --global user.name "Ciro Spaciari"
git commit -m "[GitHub Actions] Updated darwin-amd64" || true
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"