Skip to content

Commit 3ee6d4d

Browse files
committed
[ci] release workflow init commit
1 parent d01ef87 commit 3ee6d4d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: release
2+
3+
on:
4+
push:
5+
branches: [ master, cidev ]
6+
pull_request:
7+
branches: [ master, cidev ]
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up Ruby 2.5.8
16+
uses: actions/setup-ruby@v1
17+
with:
18+
ruby-version: 2.5.8
19+
- name: Build with bundler
20+
run: |
21+
gem install --no-rdoc --no-ri bundler
22+
bundle install --jobs 4 --retry 3 --deployment --without "development test"
23+

0 commit comments

Comments
 (0)