Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
[Fix] 워크플로우 파일 수정 등
Browse files Browse the repository at this point in the history
  • Loading branch information
WaterBean committed Jun 12, 2024
1 parent 8409a43 commit 6d68770
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main_bloom-dsb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_HOST: ${{ secrets.DB_HOST }}
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
AZURE_CONTAINER_NAME : ${{ secrets.AZURE_CONTAINER_NAME }}
AZURE_CONTAINER_NAME: ${{ secrets.AZURE_CONTAINER_NAME }}


jobs:
Expand Down
2 changes: 2 additions & 0 deletions azureBlobClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ const blobServiceClient = BlobServiceClient.fromConnectionString(process.env.AZU
const containerName = process.env.AZURE_CONTAINER_NAME;

const getBlobUrl = async (blobName) => {
console.log(containerName)
console.log(blobServiceClient)
const containerClient = blobServiceClient.getContainerClient(containerName);
const blobClient = containerClient.getBlobClient(blobName);
return blobClient.url;
Expand Down

0 comments on commit 6d68770

Please sign in to comment.