ci: allow checkout from another branch #19
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue