Skip to content

Commit

Permalink
buildアクション : Python 3.12でビルド失敗するので3.11にバージョン固定
Browse files Browse the repository at this point in the history
  • Loading branch information
faithandbrave committed Oct 27, 2023
1 parent cd1c5f8 commit 2c6589b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -49,8 +49,13 @@ jobs:
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:
python-version: 3.x
python-version: 3.11
# 3.12でUndefined symbolエラーがでた

# あとはスクリプトで頑張る
- run: ./boostjp/site/.github/workflows/script/build.sh
working-directory: site_generator

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

0 comments on commit 2c6589b

Please sign in to comment.