Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
# Use the latest Ubuntu runner for consistent build environment
runs-on: ubuntu-latest

env:
# Cloudinary dummy variables for testing
CLOUDINARY_CLOUD_NAME: ${{ secrets.CLOUDINARY_CLOUD_NAME }}
CLOUDINARY_API_KEY: ${{ secrets.CLOUDINARY_API_KEY }}
CLOUDINARY_API_SECRET: ${{ secrets.CLOUDINARY_API_SECRET }}


steps:
# Step 1: Check out the repository code at the tagged commit
- uses: actions/checkout@v4
Expand Down Expand Up @@ -88,4 +95,4 @@ jobs:
- name: Clean up
if: always() # Run even if previous steps fail
run: docker compose -f docker-compose-test.yml down -v
# Remove test containers and associated volumes
# Remove test containers and associated volumes
Loading