Skip to content

Commit

Permalink
ci: runs-onでのosの指定が間違っていたので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Mar 27, 2024
1 parent bef3716 commit a245941
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/typespec-compile-and-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
setup:
runs-on: ubuntu:22.04
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:

compile:
needs: setup
runs-on: ubuntu:22.04
runs-on: ubuntu-22.04
steps:
- name: Compile typespec
run: typespec compile api
Expand All @@ -60,7 +60,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu:22.04
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down

0 comments on commit a245941

Please sign in to comment.