-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
57 lines (47 loc) · 1.48 KB
/
go.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
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ published ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build
run: ./build.sh
- name: Build books
run: ./build.books.sh
- name: Get release
id: get_release
if: github.event_name == 'release' && github.event.action == 'published'
uses: bruceadams/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Attach generated epub upon release publish
if: github.event_name == 'release' && github.event.action == 'published'
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./learn-go-with-tests.epub
asset_name: learn-go-with-tests.epub
asset_content_type: application/epub+zip
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Attach generated PDF upon release publish
if: github.event_name == 'release' && github.event.action == 'published'
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./learn-go-with-tests.pdf
asset_name: learn-go-with-tests.pdf
asset_content_type: application/pdf
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}