Deploy_web_site_with_ssh #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy_web_site_with_ssh | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
bundler-cache: true | |
- name: Setup Jekyll | |
run: | | |
gem install jekyll bundler | |
- name: Update Configuration | |
run: | | |
yq -i '.JB.BASE_PATH = ""' _config.yml | |
yq -i '.baseurl = "${{ vars.CGAL_WEB_SITE_URL }}"' _config.yml | |
yq -i '.JB.ASSET_PATH = "${{ vars.CGAL_WEB_SITE_URL }}/assets/themes/cgal/"' _config.yml | |
- run: cat _config.yml | |
- name: Remove demo/ (temporarily) | |
run: rm -rf demo/ | |
- name: setup nodejs | |
run: npm install | |
- name: Build with jekyll | |
run: jekyll build --destination ./_site | |
- name: install ssh keys | |
run: | | |
install -m 600 -D /dev/null ~/.ssh/id_rsa | |
echo "${{ secrets.CGAL_WEB_SFTP_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa | |
ssh-keyscan -H ${{ vars.CGAL_WEB_SFTP_HOST }} > ~/.ssh/known_hosts | |
- name: rsync | |
run: rsync -avz ./_site/ ${{ secrets.CGAL_WEB_SFTP_USERNAME }}@${{ vars.CGAL_WEB_SFTP_HOST }}:${{ vars.CGAL_WEB_SFTP_DESTDIR }} | |
- name: cleanup | |
run: rm -rf ~/.ssh |