diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index b26c266..7e8306d 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -33,10 +33,6 @@ jobs: SECURITY_ALLOWUPPERPATHS: "true" SECURITY_ALLOWRELATIVEPATHS: "true" - live-server: - image: gitbase.de/robin/live-server - ports: - - 8080:8080 steps: - uses: actions/checkout@v3 with: @@ -55,6 +51,10 @@ jobs: npm install -g yarn yarn install + - name: Start Live Server + run: | + docker run -d -p 8080:8080 -v ${{ github.workspace }}:/usr/src/app gitbase.de/robin/live-server + - name: modify config run: | sed -i 's#\(sentryEnvironment.*\)".*"#\1"${GITHUB_REF_NAME}"#g' frontend/src/config.ts