From 1e803a86b1e1c9d818b5b7a97e075bdfa91a5787 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Mon, 17 Feb 2025 14:23:11 -0600 Subject: [PATCH] Le sigh --- .github/workflows/package.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index d713ce49..6aaf3cb0 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -77,7 +77,7 @@ jobs: - name: Set Version Variable id: set-version run: | - cd repos/tiledb + cd ~/repos/tiledb hash=$( git rev-parse --short HEAD ) version=${{ matrix.version }} if [ "x${{ matrix.build_shared_libs }}" == "xOFF"]; then @@ -92,7 +92,7 @@ jobs: shell: bash # - name: Configure TileDB # run: | - # cd repos/tiledb + # cd ~/repos/tiledb # cmake -S . -B build \ # -DCMAKE_BUILD_TYPE=Release \ # -DBUILD_SHARED_LIBS=ON \ @@ -112,20 +112,20 @@ jobs: env: TILEDB_PACKAGE_VERSION: ${{ steps.set-version.outputs.release_version }} run: | - cd repos/tiledb + cd ~/repos/tiledb mkdir build touch build/tiledb-${{ matrix.platform }}-${{ env.TILEDB_PACKAGE_VERSION }}.tar.gz* shell: bash # run: | - # cd repos/tiledb + # cd ~/repos/tiledb # cmake --build build -j4 --config Release --target package - name: Upload Artifacts uses: actions/upload-artifact@v4 with: name: release-${{ matrix.platform }} path: | - repos/tiledb/build/tiledb-*.tar.gz* - repos/tiledb/build/tiledb-*.zip* + ~/repos/tiledb/build/tiledb-*.tar.gz* + ~/repos/tiledb/build/tiledb-*.zip* publish: needs: @@ -169,6 +169,7 @@ jobs: generate-releases-csv: needs: - publish + name: Generate Release List runs-on: ubuntu-latest steps: - name: Checkout @@ -194,6 +195,7 @@ jobs: file_glob: true create-issue-on-fail: + name: "Create Issue on Failure" permissions: issues: write runs-on: ubuntu-latest