From 541d4f5bec4238260afcc47d39ad74b33a0a1f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ge=CF=85=D0=BCj=CF=85=20lee?= <97003348+GoldenPearls@users.noreply.github.com> Date: Tue, 27 Aug 2024 14:19:41 +0900 Subject: [PATCH] =?UTF-8?q?[test]=20=EC=9E=90=EB=8F=99=ED=99=94=EB=A5=BC?= =?UTF-8?q?=20=EC=9C=84=ED=95=B4!!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...onvert and Deploy DevelopLog to Jekyll.yml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/Convert and Deploy DevelopLog to Jekyll.yml b/.github/workflows/Convert and Deploy DevelopLog to Jekyll.yml index 4a10416..ab9fd64 100644 --- a/.github/workflows/Convert and Deploy DevelopLog to Jekyll.yml +++ b/.github/workflows/Convert and Deploy DevelopLog to Jekyll.yml @@ -16,16 +16,16 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7.8' # 기존 Ruby 버전 유지 + ruby-version: '3.0' # Ruby 3.0.0 이상으로 업데이트 - - name: Install compatible FFI - run: gem install ffi -v 1.17.0 # 호환 가능한 버전 설치 - - - name: Install compatible Bundler - run: gem install bundler -v 2.4.22 # 호환 가능한 버전 설치 + - name: Update RubyGems + run: gem update --system # RubyGems 업데이트 - name: Install dependencies - run: bundle install + run: | + gem install bundler # Bundler 설치 + gem install ffi # ffi 최신 버전 설치 + bundle install # 필요한 gems 설치 - name: Convert Markdown to Jekyll Format run: | @@ -72,8 +72,8 @@ jobs: - name: Commit and Push Changes run: | cd gh-pages - git config --global user.email "github-actions[bot]" - git config --global user.name "github-actions[bot]@users.noreply.github.com" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" git add . git commit -m "Bulk commit of converted posts" - git push https://${{ secrets.GH_PAT }}@github.com/GoldenPearls/GoldenPearls.github.io.git #자신의 깃허브명으로 바꿔야 함 + git push https://${{ secrets.GH_PAT }}@github.com/GoldenPearls/GoldenPearls.github.io.git