ci: allow checkout from another branch #19

Merged
asandikci merged 2 commits from main into test-for-subpages 2025-01-19 18:45:14 +03:00
Showing only changes of commit 096bd8c91b - Show all commits

View file

@ -26,13 +26,15 @@ jobs:
image: git.asandikci.com/docker-images/website_builder:latest image: git.asandikci.com/docker-images/website_builder:latest
steps: steps:
- name: Git Clone - name: Git Clone
env:
BRANCH: ${{ github.ref_name }}
run: | run: |
git clone https://git.asandikci.com/asandikci.com/web git clone --no-checkout https://git.asandikci.com/asandikci.com/web .
ls -la ./web git checkout --progress --force "$BRANCH"
- name: Build Site (with Drafts!) - name: Build Site (with Drafts!)
run: | run: |
cd web
bundle install bundle install
bundle exec jekyll b --drafts bundle exec jekyll b --drafts
ls -la ls -la