From b505448f3611f19195c0ea5427bb1d1b46e8851b Mon Sep 17 00:00:00 2001 From: DIKER0K Date: Mon, 21 Jul 2025 00:50:14 +0500 Subject: [PATCH] add: create .env file --- .gitea/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 84747cf..477e22e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -12,6 +12,12 @@ jobs: - name: Checkout repository 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 run: | cd /home/server/popa_minecraft_launcher_api