Skip to content

Commit d73f6a2

Browse files
authored
change the pull to the beginning
1 parent 4907918 commit d73f6a2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/dargon2_library-builder.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
needs: linux-build
4040
steps:
4141
- uses: actions/checkout@v2
42+
- name: Get Updated Changes
43+
run: git pull origin main
4244
- name: make library
4345
run: |
4446
git clone https://github.com/P-H-C/phc-winner-argon2.git argon2_library
@@ -62,14 +64,15 @@ jobs:
6264
git remote add secure-origin https://${{ secrets.ACCESS_TOKEN }}@github.com/tmthecoder/argon2_dart.git
6365
git commit -m "create blobs for mac"
6466
git fetch --unshallow secure-origin main
65-
git pull secure-origin main
6667
git push secure-origin main
6768
fi
6869
windows-build:
6970
runs-on: windows-latest
7071
needs: [linux-build, mac-build]
7172
steps:
7273
- uses: actions/checkout@v2
74+
- name: Get Updated Changes
75+
run: git pull origin main
7376
- name: Add msbuild to PATH
7477
uses: microsoft/[email protected]
7578
- name: Install Windows 8.1 SDK
@@ -95,6 +98,5 @@ jobs:
9598
git remote add secure-origin https://${{ secrets.ACCESS_TOKEN }}@github.com/tmthecoder/argon2_dart.git
9699
git commit -m "create blobs for mac"
97100
git fetch --unshallow secure-origin main
98-
git pull secure-origin main
99101
git push secure-origin main
100102
fi

0 commit comments

Comments
 (0)