Skip to content

Commit

Permalink
ci: Fix auto-release (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Jan 28, 2025
1 parent e94c4d5 commit 7815807
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release-automated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:

jobs:
release:
runs-on: macos-14
runs-on: macos-15
outputs:
current_tag: ${{ steps.tag.outputs.current_tag }}
steps:
Expand All @@ -19,7 +19,10 @@ jobs:
node-version: 22
cache: npm
- name: Setup Ruby
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.0'
bundler-cache: true
- name: Cache Gems
id: cache-gems
uses: actions/cache@v2
Expand All @@ -46,7 +49,7 @@ jobs:
publish-docs:
needs: release
if: needs.release.outputs.current_tag != ''
runs-on: macos-14
runs-on: macos-15
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-manual-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
publish-docs:
if: github.event.inputs.tag != ''
runs-on: macos-14
runs-on: macos-15
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -20,6 +20,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.0'
bundler-cache: true
- name: Submodules
run: git submodule update --init --recursive
Expand Down

0 comments on commit 7815807

Please sign in to comment.