Skip to content

Commit

Permalink
RENAME branch from master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
pjshwa committed Mar 2, 2024
1 parent f40c2ad commit d810b16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-stag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy staging
on:
push:
branches:
- master
- main

jobs:
build:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d810b16

Please sign in to comment.