[devtools] sync configs

This commit is contained in:
dry-bot 2020-01-23 09:54:37 +00:00
parent e24444f623
commit 3c237f90c5
3 changed files with 5 additions and 9 deletions

View File

@ -46,7 +46,7 @@ jobs:
ruby-version: ${{matrix.ruby}}
- name: Install latest bundler
run: |
gem install bundler
gem install bundler --no-document
bundle config set without 'tools benchmarks docs'
- name: Bundle install
run: bundle install --jobs 4 --retry 3
@ -66,7 +66,7 @@ jobs:
with:
ruby-version: 2.6
- name: Install dependencies
run: gem install ossy
run: gem install ossy --no-document
- name: Trigger release workflow
run: |
tag=$(echo $GITHUB_REF | cut -d / -f 3)

View File

@ -30,7 +30,7 @@ jobs:
git config --local user.email "dry-bot@dry-rb.org"
git config --local user.name "dry-bot"
- name: Install dependencies
run: gem install ossy
run: gem install ossy --no-document
- name: Update release branches
run: |
branches=`git log --format=%B -n 1 $GITHUB_SHA | grep "docsite:release-" || echo "nothing"`

View File

@ -31,12 +31,8 @@ jobs:
uses: eregon/use-ruby-action@master
with:
ruby-version: 2.6
- name: Install latest bundler
run: |
gem install bundler
bundle config set without 'test tools benchmarks docs'
- name: Install dependencies
run: gem install ossy
run: gem install ossy --no-document
- name: Compile file templates
run: tmp/devtools/bin/compile-templates $GITHUB_REPOSITORY
- name: Update workflow files from devtools
@ -50,7 +46,7 @@ jobs:
- name: Commit
run: |
git add -A
git commit -m "[devtools] sync configs" || echo "nothing to commit"
git commit -m "[devtools] sync" || echo "nothing to commit"
- name: Push changes
run: |
git pull --rebase origin master