From 3ac6feaec5e99cbf01669122d3a9c26edbc93936 Mon Sep 17 00:00:00 2001 From: Charlie Dibble Date: Wed, 10 Apr 2024 10:43:13 -0700 Subject: [PATCH] fix: only use main in release processes (#112) --- publish-gh-pages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish-gh-pages.sh b/publish-gh-pages.sh index b410443..d32bc16 100755 --- a/publish-gh-pages.sh +++ b/publish-gh-pages.sh @@ -3,7 +3,7 @@ set -e # aborts if there are errors set -u # errors if you use an undefined variable set -o pipefail # errors if a pipe fails -git checkout master +git checkout main npm run build