Skip to content

Commit a568d07

Browse files
authored
Make it even simpler to publish, hopefully
1 parent ae1ad4e commit a568d07

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/ruby.yml renamed to .github/workflows/create-release.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Ruby
22

33
on:
4-
push:
5-
tags:
6-
- '*'
4+
release
75

86
jobs:
97
build:
@@ -16,7 +14,17 @@ jobs:
1614
uses: actions/setup-ruby@v1
1715
with:
1816
ruby-version: 2.6.x
19-
- name: Build and test with Rake
17+
- name: Update Externals
18+
run: |
19+
git submodules update --remote
20+
- name: commit changed files
21+
uses: stefanzweifel/[email protected]
22+
with:
23+
commit_message: Apply automatic changes
24+
branch: ${{ github.head_ref }}
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
- name: Build and test with Jekyll
2028
run: |
2129
gem install bundler
2230
bundle install --jobs 4 --retry 3

0 commit comments

Comments
 (0)