瀏覽代碼

Fix incorrect path

v2
Xerbo 1 年之前
父節點
當前提交
493a48b263
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 34103F6D8F11CEB0
共有 3 個文件被更改,包括 8 次插入8 次删除
  1. +3
    -3
      .github/workflows/build.yml
  2. +3
    -3
      .github/workflows/release.yml
  3. +2
    -2
      build_windows.sh

+ 3
- 3
.github/workflows/build.yml 查看文件

@@ -33,13 +33,13 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: TGZ package
path: build/aptdec/aptdec_*.tar.gz
path: build/aptdec_*.tar.gz

- name: Upload DEB package
uses: actions/upload-artifact@v3
with:
name: Debian package
path: build/aptdec/aptdec_*.deb
path: build/aptdec_*.deb

build_windows:
runs-on: ubuntu-latest
@@ -60,4 +60,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ZIP package
path: build/aptdec/aptdec_*.zip
path: build/aptdec_*.zip

+ 3
- 3
.github/workflows/release.yml 查看文件

@@ -59,13 +59,13 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: TGZ package
path: build/aptdec/aptdec_*.tar.gz
path: build/aptdec_*.tar.gz

- name: Upload DEB package
uses: actions/upload-artifact@v3
with:
name: Debian package
path: build/aptdec/aptdec_*.deb
path: build/aptdec_*.deb

build_windows:
runs-on: ubuntu-latest
@@ -86,4 +86,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ZIP package
path: build/aptdec/aptdec_*.zip
path: build/aptdec_*.zip

+ 2
- 2
build_windows.sh 查看文件

@@ -33,8 +33,8 @@ if [ ! -d libsndfile-1.2.0-win64 ]; then
fi

# Copy required GCC libs
cp $(find /usr | grep libgcc_s_seh-1.dll) $TEMP_PATH/bin
cp $(find /usr | grep libwinpthread-1.dll) $TEMP_PATH/bin
cp $(find /usr | grep libgcc_s_seh-1.dll | head -n 1) $TEMP_PATH/bin
cp $(find /usr | grep libwinpthread-1.dll | head -n 1) $TEMP_PATH/bin

# Build aptdec
cmake -B $BUILD_DIR -DCMAKE_BUILD_TYPE=$1 -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-mingw32.cmake -DCMAKE_INSTALL_PREFIX=$TEMP_PATH


Loading…
取消
儲存