Skip to content

Commit

Permalink
downgrade ubuntu as latest does not have sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
googley42 committed Dec 8, 2024
1 parent da7ec94 commit 596c739
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name: Website
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Git Checkout
Expand All @@ -33,7 +33,7 @@ jobs:
run: sbt docs/clean; sbt docs/buildWebsite
publish-docs:
name: Publish Docs
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
steps:
- name: Git Checkout
Expand All @@ -57,7 +57,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
generate-readme:
name: Generate README
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
steps:
- name: Git Checkout
Expand Down

0 comments on commit 596c739

Please sign in to comment.