Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekgsharma committed Oct 2, 2024
1 parent 6920dee commit 829740b
Showing 1 changed file with 6 additions and 19 deletions.
25 changes: 6 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 829740b

Please sign in to comment.