木木的木头 2 лет назад
Родитель
Сommit
33ca19e9da
2 измененных файлов с 3 добавлено и 3 удалено
  1. 2 2
      .github/workflows/release.yml
  2. 1 1
      server/config/config.go

+ 2 - 2
.github/workflows/release.yml

@@ -32,10 +32,10 @@ jobs:
       - name: Setup Go environment
         uses: actions/setup-go@v4.1.0
       - name: Gen output name
-        run: echo "FILENAME=t_${{ matrix.goos }}_${{ matrix.goarch }}" >> ${GITHUB_ENV}
+        run: echo "FILENAME=pmail_${{ matrix.goos }}_${{ matrix.goarch }}" >> ${GITHUB_ENV}
       - name: Rename Windows File
         if: matrix.goos == 'windows'
-        run: echo "FILENAME=t_${{ matrix.goos }}_${{ matrix.goarch }}.exe" >> ${GITHUB_ENV}
+        run: echo "FILENAME=pmail_${{ matrix.goos }}_${{ matrix.goarch }}.exe" >> ${GITHUB_ENV}
       - name: FE Build
         run: cd fe && yarn && yarn build
       - name: BE Build

+ 1 - 1
server/config/config.go

@@ -38,7 +38,7 @@ type Config struct {
 //go:embed tables/*
 var tableConfig embed.FS
 
-const Version = "2.2.2"
+const Version = "2.2.5"
 
 const DBTypeMySQL = "mysql"
 const DBTypeSQLite = "sqlite"