From f48ab80308faf5097410efb8c760d29b5fe35720 Mon Sep 17 00:00:00 2001 From: Tobias O Date: Sat, 9 Nov 2024 18:56:49 +0100 Subject: [PATCH] build: add deployment url --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a6736f..ffdb7dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -155,7 +155,9 @@ jobs: needs: [build-frontend, release-github] if: needs.determine-release.outputs.release_needed == 'true' runs-on: ubuntu-latest - environment: production + environment: + name: production + url: ${{ steps.deploy.outputs.deployment-url }} steps: - name: Download Build Artifacts uses: actions/download-artifact@v4 @@ -164,6 +166,7 @@ jobs: path: dist/frontend/ - name: Upload Build Artifacts uses: cloudflare/wrangler-action@v3 + id: deploy with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}