Skip to content

Commit a022172

Browse files
authored
Merge pull request #231 from dolthub/bh/kill-subcommands
kill subcommands
2 parents 4e05521 + 7fb1e3f commit a022172

File tree

18 files changed

+724
-727
lines changed

18 files changed

+724
-727
lines changed

.github/workflows/cd-release.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ jobs:
3939
env:
4040
FILE: ${{ format('{0}/server/server.go', github.workspace) }}
4141
NEW_VERSION: ${{ needs.format-version.outputs.version }}
42+
- name: Set minver TBD to version
43+
run: sed -i -e 's/minver:"TBD"/minver:"'"$NEW_VERSION"'"/' "$FILE"
44+
env:
45+
FILE: ${{ format('{0}/server/config.go', github.workspace) }}
46+
NEW_VERSION: ${{ needs.format-version.outputs.version }}
47+
- name: update minver_validation.txt
48+
working-directory: ./
49+
run: go run -mod=readonly ./utils/genminver_validation/ $FILE
50+
env:
51+
FILE: ${{ format('{0}/server/testdata/minver_validation.txt', github.workspace) }}
4252
- uses: EndBug/add-and-commit@v9.1.1
4353
with:
4454
message: ${{ format('Update DoltgreSQL version to {0}', needs.format-version.outputs.version) }}

.github/workflows/ci-bats-unix.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ jobs:
4848
working-directory: ./
4949
run: |
5050
go build -mod=readonly -o .ci_bin/doltgres ./cmd/doltgres
51-
- name: Setup DoltgreSQL Config
52-
run: |
53-
doltgres config --global --add user.name 'Dolthub Actions'
54-
doltgres config --global --add user.email 'actions@dolthub.com'
5551
- name: Install PSQL Ubuntu
5652
if: matrix.os == 'ubuntu-22.04'
5753
run: |

0 commit comments

Comments
 (0)