add: create .env file
All checks were successful
Build and Deploy / deploy (push) Successful in 10s

This commit is contained in:
2025-07-21 00:50:14 +05:00
parent 06ac3c01a2
commit b505448f36

View File

@ -12,6 +12,12 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Create .env file
run: |
echo "MONGO_URI=${{ secrets.MONGO_URI }}" > .env
echo "SECRET_KEY=${{ secrets.SECRET_KEY }}" >> .env
echo "FILES_URL=${{ secrets.FILES_URL }}" >> .env
- name: Build and deploy - name: Build and deploy
run: | run: |
cd /home/server/popa_minecraft_launcher_api cd /home/server/popa_minecraft_launcher_api