Skip to content

Commit 1ff08ae

Browse files
committed
Prepare to build v3.13.0-rc3
1 parent 2e52d88 commit 1ff08ae

6 files changed

Lines changed: 11 additions & 13 deletions

File tree

.github/workflows/build-appimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
4949
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
50-
export VERSION=v3.13.0-rc2
50+
export VERSION=v3.13.0-rc3
5151
./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage
5252
5353
- name: Rename a file

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
- name: Configure build
3939
run: |
4040
if [ "${{ matrix.sqlcipher }}" = "1" ]; then
41-
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-v3.13.0-rc2"/' CMakeLists.txt
41+
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-v3.13.0-rc3"/' CMakeLists.txt
4242
else
43-
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.0-rc2"/' CMakeLists.txt
43+
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.0-rc3"/' CMakeLists.txt
4444
fi
4545
4646
mkdir build && cd build

.github/workflows/build-windows.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ jobs:
143143
cd installer/windows
144144
./build.cmd "${{ matrix.arch }}".ToLower()
145145
$ARCH="${{ matrix.arch }}".ToLower()
146-
$DATE=$(Get-Date -Format "yyyy-MM-dd")
147-
mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.msi"
146+
mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc3-$ARCH.msi"
148147
149148
- if: github.event_name != 'pull_request'
150149
name: Upload artifacts for code signing with SignPath
@@ -171,8 +170,7 @@ jobs:
171170
name: Create ZIP
172171
run: |
173172
$ARCH="${{ matrix.arch }}".ToLower()
174-
$DATE=$(Get-Date -Format "yyyy-MM-dd")
175-
$FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.zip"
173+
$FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-rc3-$ARCH.zip"
176174
Start-Process msiexec.exe -ArgumentList "/a $(dir installer\windows\DB.Browser.for.SQLite-*.msi) /q TARGETDIR=$PWD\target\" -Wait
177175
if ("${{ matrix.arch }}" -eq "Win32") {
178176
move target\System\* "target\DB Browser for SQLite\"

.github/workflows/cppcmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build v3.13.0-rc2
1+
name: Build v3.13.0-rc3
22

33
on:
44
workflow_dispatch:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55

66
env:
7-
tag_name: "v3.13.0-rc2"
7+
tag_name: "v3.13.0-rc3"
88

99
jobs:
1010
release:

installer/macos/notarize.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ mv build/*.app installer/macos
7777
export DATE=$(date +%Y%m%d)
7878

7979
if [ "$SQLCIPHER" = "1" ]; then
80-
sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-v3.13.0-rc2.app"/' installer/macos/sqlcipher-nightly.json
81-
TARGET="DB.Browser.for.SQLCipher-v3.13.0-rc2.dmg"
80+
sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-v3.13.0-rc3.app"/' installer/macos/sqlcipher-nightly.json
81+
TARGET="DB.Browser.for.SQLCipher-v3.13.0-rc3.dmg"
8282
appdmg --quiet installer/macos/sqlcipher-nightly.json "$TARGET"
8383
else
8484
# Continuous without SQLCipher
85-
sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-v3.13.0-rc2.app"/' installer/macos/nightly.json
86-
TARGET="DB.Browser.for.SQLite-v3.13.0-rc2.dmg"
85+
sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-v3.13.0-rc3.app"/' installer/macos/nightly.json
86+
TARGET="DB.Browser.for.SQLite-v3.13.0-rc3.dmg"
8787
appdmg --quiet installer/macos/nightly.json "$TARGET"
8888
fi
8989

0 commit comments

Comments
 (0)