-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: git clone xeon-dapp to local VM dir
- Loading branch information
Jon Bray
committed
Jul 28, 2024
1 parent
a5da2aa
commit 1534f95
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
path: v1-core | ||
|
||
- name: Check for ABI changes | ||
id: check_changes | ||
|
@@ -36,7 +37,7 @@ jobs: | |
- name: Sync ABI to xeon-dapp | ||
if: steps.check_changes.outputs.changed == '1' | ||
run: | | ||
git clone [email protected]:xeon-protocol/xeon-dapp.git | ||
git clone [email protected]:xeon-protocol/xeon-dapp.git xeon-dapp | ||
cd xeon-dapp | ||
git checkout -B ci/abi-sync || git checkout --orphan ci/abi-sync | ||
rsync -a ../v1-core/abi/ src/abi/ | ||
|