commit b52cb312b52ac8d631f2a628fb3105d378bc6019 parent 54da4bd4a645be4a384924c7ddc1fd25d68a72ac Author: MTRNord <mtrnord1@gmail.com> Date: Tue, 3 Jan 2023 20:39:25 +0100 Add missing file Diffstat:
| M | .github/workflows/deploy-preview.yml | | | 2 | +- |
| M | .github/workflows/deploy.yml | | | 8 | ++++++-- |
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml @@ -37,7 +37,7 @@ jobs: name: Setup node if: ${{ github.ref != 'refs/heads/main' }} with: - node-version: "16" + node-version: "18" - name: Create env file if: ${{ github.ref != 'refs/heads/main' }} run: | diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml @@ -13,8 +13,12 @@ jobs: - uses: actions/setup-node@v3 name: Setup node with: - node-version: "16" - + node-version: "18" + - name: Create env file + run: | + echo "VITE_MATRIX_SERVER_URL=https://matrix.art.midnightthoughts.space" > .env.local + echo "VITE_MATRIX_INSTANCE_ADMIN=@administrator:art.midnightthoughts.space" >> .env.local + echo "VITE_MATRIX_ROOT_FOLDER=#Matrix_Art:art.midnightthoughts.space" >> .env.local - name: Install and Build 🔧 run: | npm ci