From 0261788a6786f2b1f0a056c16d835d45b451ea98 Mon Sep 17 00:00:00 2001 From: Konrad Pozniak Date: Thu, 10 Oct 2024 20:13:28 +0200 Subject: [PATCH] add environment to workflows (#4721) this should fix the problem where the secrets are not available in the workflow https://github.com/tuskyapp/Tusky/actions/runs/11276192946/job/31362570493 --- .github/workflows/deploy-release.yml | 1 + .github/workflows/deploy-test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index b82e2dd71..6fc34cbaa 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -13,6 +13,7 @@ jobs: deploy: runs-on: ubuntu-latest needs: check-and-build + environment: Release steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index d58996f3e..3f8e0d8f3 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -13,6 +13,7 @@ jobs: deploy: runs-on: ubuntu-latest needs: check-and-build + environment: Test steps: - name: Checkout uses: actions/checkout@v4