Skip to content

update img

update img #44

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ gh-pages ]
pull_request:
branches: [ gh-pages ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"
- name: Install zip
uses: montudor/action-zip@v1
- name: Zip output
run: zip -qq -r ${{ github.workspace }}/blog.zip ${{ github.workspace }}/_site
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: latest
files: ${{ github.workspace }}/blog.zip