Skip to content

Commit d59dd4c

Browse files
authoredFeb 25, 2025··
Change submodule URL to self hosted one (#529)
* Change submodule URL to self hosted one * Add username and password to submodule * test * adiajsdij * try now * ofc lol * Change username * Change username * Change username * Change username * something * oops
1 parent 9d4bb43 commit d59dd4c

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
 

‎.github/workflows/e2e.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,15 @@ jobs:
2727
- name: Check out Git repository
2828
uses: actions/checkout@v4
2929
with:
30-
submodules: 'true'
31-
lfs: 'true'
32-
30+
submodules: 'false'
31+
lfs: 'false'
32+
- name: Fetch lfs
33+
env:
34+
LFS_USERNAME: 'Duddino'
35+
LFS_PASSWORD: ${{ secrets.LFS_PASSWORD }}
36+
run: |
37+
git submodule set-url cypress/fixtures/e2e "https://$LFS_USERNAME:$LFS_PASSWORD@mpw-git.duddino.com/Duddino/MPW-playbacks.git"
38+
git submodule update --init --recursive
3339
- name: Set up Node.js
3440
uses: actions/setup-node@v4
3541

‎.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "cypress/fixtures/e2e"]
22
path = cypress/fixtures/e2e
3-
url = https://github.com/PIVX-Labs/MPW-playbacks.git
3+
url = https://mpw-git.duddino.com/Duddino/MPW-playbacks.git

0 commit comments

Comments
 (0)
Please sign in to comment.