Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #137 from protocol/masih/rm-gx-on-deploy
Browse files Browse the repository at this point in the history
remove .gx on initial deployment
  • Loading branch information
marten-seemann committed Jul 20, 2021
2 parents 25abcc8 + 198d8e0 commit 7ea5c2f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/copy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ jobs:
git rm -r .circleci
git commit -m "disable CircleCI"
fi
- name: remove gx on initial deployment
if: ${{ env.INITIAL_TEST_DEPLOYMENT == 1 }}
run: |
cd $TARGET_REPO_DIR
if [[ -d .gx ]]; then
git rm -r .gx
git commit -m "remove .gx"
fi
- name: run go mod tidy
run: |
cd $TARGET_REPO_DIR
Expand Down

0 comments on commit 7ea5c2f

Please sign in to comment.