Implement Jekyll CI workflow with docker #2

Merged
btlogy merged 60 commits from 1.test-ci into main 2024-05-23 12:16:39 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit dc95ab799a - Show all commits

View File

@ -47,9 +47,13 @@ jobs:
run: | run: |
docker-compose run --rm -v "${JOB_CONTAINER_NAME}:/home/ubuntu/workspace" jekyll build --verbose docker-compose run --rm -v "${JOB_CONTAINER_NAME}:/home/ubuntu/workspace" jekyll build --verbose
- name: Upload Jekyll site - name: Upload Jekyll site
id: upload_site
uses: "actions/upload-artifact@v3" uses: "actions/upload-artifact@v3"
with: with:
name: jekyll-site name: jekyll-site
path: _site path: _site
if-no-files-found: error if-no-files-found: error
- name: Verify site
id: verify_site
run: |
echo "${{ steps.upload_site.outputs.artifact-url }}"