Skip to content

Commit

Permalink
Update Deploy_web_site_with_ssh.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SaillantNicolas authored Apr 26, 2024
1 parent 8eeffe0 commit 2f36c1c
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/Deploy_web_site_with_ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,21 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup Jekyll
run: |
gem install jekyll bundler
- name: Change BASE_PATH
run: yq -i '.JB.BASE_PATH = ""' _config.yml
- name: Remove demo/ (temporarily)
run: rm -rf demo/
- name: setup nodejs
run: npm install
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Build with jekyll
run: jekyll build --destination ./_site
- name: install ssh keys
run: |
install -m 600 -D /dev/null ~/.ssh/id_rsa
Expand Down

0 comments on commit 2f36c1c

Please sign in to comment.