Skip to content

Commit

Permalink
fixv5
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Feb 26, 2024
1 parent 2d90b87 commit e175464
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Install Python
uses: actions/setup-python@v4
Expand Down
6 changes: 3 additions & 3 deletions util/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
GIT_CHECKOUT_CMD = 'git checkout'
GIT_CHECKOUT_TAG_CMD = 'git checkout -b'
GIT_COMMIT_CMD = 'git commit -m'
GIT_MERGE_SQUASH_CMD = 'git merge --squash --allow-unrelated-histories'
GIT_MERGE_SQUASH_CMD = 'git merge --squash'
GIT_PUSH_CMD = 'git push'

# Repo configuration
Expand Down Expand Up @@ -76,5 +76,5 @@
os.popen(f'{GIT_COMMIT_CMD} "{deploy_msg}"')
time.sleep(0.5)

# push state to origin
os.popen(f'{GIT_PUSH_CMD} {ORIGIN} {deploy_branch}')
## push state to origin
#os.popen(f'{GIT_PUSH_CMD} {ORIGIN} {deploy_branch}')

0 comments on commit e175464

Please sign in to comment.