Post
새소식
- Chirpy Theme 7.2.0 업데이트

github build runner update

GitHub Actions 빌드 에러 수정

github build runner update

GitHub build runner update

10월에 작성한 글이 GitHub Actions을 돌면서 build runner 관련 error를 발생시켰다. GitHub Actions을 잘 모르기에 수정하기가 만만치 않았다. 인터넷 검색도 해 봤지만 적절한 답을 찾지 못했다.

이런 저런 시행착오 끝에 동작하도록 조치는 했다. 하지만 사이트를 정상적으로 운영하려면 GitHub Actions 공부를 좀 해야겠다.

1
2
3
4
5
6
7
8
9
10
11
jobs:
  # Build job
  build:
    # runs-on: ubuntu-latest
    if: true
    strategy:
      fail-fast: false
      matrix:
        os: [ ubuntu-20.04 ]
        ruby: [ruby-3.4.0-preview2]
    runs-on: $ 

runs-on에 명시적으로 ubuntu-20.04를 적어 두던지 아래 참고 자료 내용을 적용해도 된다.

_EOF_

This post is licensed under CC BY 4.0 by the author.