Browse Source

Fix incorrect path

v2
Xerbo 1 year ago
parent
commit
493a48b263
No known key found for this signature in database GPG Key ID: 34103F6D8F11CEB0
3 changed files with 8 additions and 8 deletions
  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 View File

@@ -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 View File

@@ -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 View File

@@ -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…
Cancel
Save