File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 7171 file : ./dist/swish
7272 asset_name : swish-linux_x86-64
7373 tag : ${{ github.ref }}
74+
75+
76+ MacOS :
77+ runs-on : macos-latest
78+
79+ steps :
80+ - name : Pull source
81+ uses : actions/checkout@v2
82+
83+ - name : Setup Python
84+ uses : actions/setup-python@v2
85+ with :
86+ python-version : 3.x
87+
88+ - name : Install Deps
89+ run : |
90+ python -m ensurepip
91+ pip install setuptools
92+ pip install -r native/requirements-dev.txt
93+ pip install -r native/requirements.txt
94+ pip install -r requirements-dev.txt
95+ pip install -r requirements.txt
96+ - name : Build swish
97+ run : |
98+ python build.py --no-deps
99+ - name : Upload binaries to release
100+ uses : svenstaro/upload-release-action@v2
101+ with :
102+ repo_token : ${{ secrets.GITHUB_TOKEN }}
103+ file : ./dist/swish
104+ asset_name : swish-macOS_x86-64
105+ tag : ${{ github.ref }}
You can’t perform that action at this time.
0 commit comments