diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 708d6c2..38311bb 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -27,8 +27,8 @@ jobs: # Clone materials into new release directory from git branch cd $repo_directory - git fetch --depth 1 origin master - git archive master | /usr/bin/env tar -x -f - -C $current_directory + git fetch --depth 1 origin main + git archive main | /usr/bin/env tar -x -f - -C $current_directory # Symlink shared materials cd $current_directory diff --git a/.github/workflows/deploy-stag.yml b/.github/workflows/deploy-stag.yml index aece5b8..09a0417 100644 --- a/.github/workflows/deploy-stag.yml +++ b/.github/workflows/deploy-stag.yml @@ -2,7 +2,7 @@ name: Deploy staging on: push: branches: - - master + - main jobs: build: @@ -34,8 +34,8 @@ jobs: # Clone materials into new release directory from git branch cd $repo_directory - git fetch --depth 1 origin master - git archive master | /usr/bin/env tar -x -f - -C $current_directory + git fetch --depth 1 origin main + git archive main | /usr/bin/env tar -x -f - -C $current_directory # Symlink shared materials cd $current_directory