Skip to content
Permalink
7476e98f2b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Yoann Chaudet fix linter issues
Latest commit 7476e98 Dec 28, 2022 History
0 contributors

Users who have contributed to this file

executable file 14 lines (12 sloc) 391 Bytes
#! /usr/bin/env sh
if [ "local" = "$1" ]; then
export JEKYLL_ENV=production
export PAGES_REPO_NWO=actions/jekyll-build-pages
export JEKYLL_BUILD_REVISION=JEKYLL_BUILD_REVISION
for dir in test_projects/*
do
bundle exec github-pages build --verbose -s "test_projects/${dir}" -d "test_projects/${dir}/_expected"
done
else
act -b -s GITHUB_TOKEN -j record-expected-output
fi