Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix auto-release #1840

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading