diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-07-12 00:50:17 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2021-07-12 00:50:17 -0600 |
| commit | 1b5474868ff29bcd6cc85ec34b8faf426f31bd6c (patch) | |
| tree | a5542635dd06cb86c91c6f5697824dde9bbbc35c /.github | |
| parent | 05c4e4877437e1648cfca7eba36f4f3eb63d6eff (diff) | |
set bundler version in release workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69c97651..c22b8d08 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,14 +1,14 @@ name: Release on: push: - tags: - - 'v*' + tags: ['v*'] jobs: activate: if: github.repository == 'asciidoctor/asciidoctor' runs-on: ubuntu-latest steps: - - run: echo ok go + - name: Proceed + run: echo ok go build: needs: activate runs-on: ubuntu-latest @@ -19,6 +19,8 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' + # NOTE lock bundler version due to https://github.com/rubygems/rubygems/issues/4748 + bundler: '2.2.22' - name: Configure Bundler run: | bundle config --local path .bundle/gems |
