Skip to content

Commit e3d12a7

Browse files
authored
add release scripts via github actions
1 parent 6edc2af commit e3d12a7

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Release on push to main
2+
3+
on:
4+
push:
5+
branches: [ main, master ]
6+
7+
jobs:
8+
release:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: get bootstrap file
15+
run: wget https://raw.githubusercontent.com/progit/progit2-pub/master/bootstrap.sh
16+
- name: run bootstrap
17+
run: sh bootstrap.sh
18+
- name: Compute tag name
19+
id: compute-tag
20+
run: |
21+
echo Computing next tag number
22+
LASTPATCH=$(git describe --tags | cut -d- -f1 | cut -d. -f3)
23+
PATCH=$(($LASTPATCH+1))
24+
echo "::set-output name=tagname::2.1.${PATCH}"
25+
echo "::set-output name=branch::${GITHUB_REF#refs/heads/}"
26+
27+
- name: Set up Ruby
28+
uses: ruby/setup-ruby@v1
29+
with:
30+
ruby-version: 2.7
31+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32+
33+
- name: Build release assets
34+
run: bundle exec rake book:build_action
35+
36+
- name: Create release
37+
uses: ncipollo/release-action@v1
38+
with:
39+
token: ${{ secrets.GITHUB_TOKEN }}
40+
tag: ${{ steps.compute-tag.outputs.tagname }}
41+
commit: ${{ steps.compute-tag.outputs.branch }}
42+
artifacts: './progit.epub,./progit.mobi,./progit.pdf,./progit.html'

0 commit comments

Comments
 (0)