diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b64454694..d087809a9e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,24 +19,6 @@ jobs: with: fetch-depth: 0 - - name: Configure AWS credentials and bucket region - uses: aws-actions/configure-aws-credentials@v4 - with: - aws-region: ${{ secrets.AWS_REGION }} - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - - - name: Retrieve JS build artifacts - uses: strophy/actions-cache@opendal-update - with: - bucket: multi-runner-cache-x1xibo9c - root: actions-cache - path: build-js-artifacts-${{ github.sha }}.tar - key: build-js-artifacts/${{ github.sha }} - - - name: Unpack JS build artifacts archive - run: tar -xf build-js-artifacts-${{ github.sha }}.tar - - name: Install macOS build deps run: | brew install llvm coreutils @@ -73,7 +55,12 @@ jobs: - name: Create package env: OSX_KEYCHAIN: ${{ runner.temp }}/app-signing.keychain-db - run: "${GITHUB_WORKSPACE}/scripts/pack_dashmate.sh macos" + run: | + echo "Current directory: $(pwd)" + echo "Listing contents of current directory:" + ls -la + echo "Running pack_dashmate.sh:" + "${GITHUB_WORKSPACE}/scripts/pack_dashmate.sh" macos - name: Upload artifacts uses: actions/upload-artifact@v3