-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (68 loc) · 2.15 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: build for mac
on:
push:
tags:
- 'v*'
jobs:
build:
name: build-mac
env:
GO111MODULE: "on"
runs-on: macos-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make build dotz_ver=${{ github.ref }}
- name: create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Release ${{ github.ref }}
revision ${{ github.revision }}
draft: false
prerelease: false
- name: upload release binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dotz
asset_name: dotz
asset_content_type: application/octet-stream
- name: update homebrew formula
id: update_homebrew_formula
uses: ./.github/actions/update_homebrew
with:
formula_url: 'https://github.com/magcho/homebrew-magcho'
formula_file_name: 'dotz.rb'
asset_path: ./dotz
tag_name: ${{ github.ref }}
revision: ${{ github.sha }}
- name: upload formula recipe
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dotz.rb
asset_name: dotz.rb
asset_content_type: application/octet-stream
- name: homebrew formula test
id: homebrew_test
run: |
sh ./ci/homebrew_test.sh "magcho" "dotz.rb"
- name: create commit
run: |
sh ./ci/create_commit.sh "dotz.rb" "magcho" "${{ secrets.github_personal_acces_token }}" "mail@magcho.com"