File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Build release binary on macos-latest to be used for other actions
2
+
3
+ on : [ workflow_dispatch ]
4
+
5
+ jobs :
6
+ build-macos-latest :
7
+ runs-on : macos-latest
8
+ steps :
9
+ - uses : actions/checkout@v3
10
+ - name : " Install tools"
11
+ run : brew install automake mbedtls libtool
12
+ - name : " Build"
13
+ run : |
14
+ curl -f -o get-gauche.sh https://raw.githubusercontent.com/shirok/get-gauche/master/get-gauche.sh
15
+ chmod +x get-gauche.sh
16
+ ./get-gauche.sh --prefix /usr/local --destdir package --version latest --force
17
+ (cd package; tar czvf ../gauche-binary-macos-latest.tar.gz .)
18
+ - name : " Upload"
19
+ run : |
20
+ gh release upload v1 gauche-binary-macos-latest.tar.gz --clobber
21
+ env :
22
+ GITHUB_TOKEN : ${{ github.TOKEN }}
Original file line number Diff line number Diff line change 1
- name : Build release binary to be used for other actions
1
+ name : Build release binary on ubuntu-latest to be used for other actions
2
2
3
3
on : [ workflow_dispatch ]
4
4
5
5
jobs :
6
- trigger-tester :
6
+ build-ubnutu-latest :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments