Skip to content

Commit 4aa2ca4

Browse files
authored
Merge pull request #259 from dolthub/bh/build-parser-earlier
build parser earlier in release process
2 parents 80a6a5d + 708c54b commit 4aa2ca4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cd-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
uses: actions/checkout@v4
3535
with:
3636
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN || secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
37+
- name: Build SQL Syntax
38+
run: ./build.sh
39+
working-directory: ./postgres/parser
40+
shell: bash
3741
- name: Update Doltgres version command
3842
run: sed -i -e 's/ Version = ".*"/ Version = "'"$NEW_VERSION"'"/' "$FILE"
3943
env:
@@ -67,10 +71,6 @@ jobs:
6771
uses: actions/setup-go@v5
6872
with:
6973
go-version-file: go.mod
70-
- name: Build SQL Syntax
71-
run: ./build.sh
72-
working-directory: ./postgres/parser
73-
shell: bash
7474
- name: Build Binaries
7575
id: build_binaries
7676
run: |

0 commit comments

Comments
 (0)