From 8d4ba8c28385a35fd32f590471f784631e0de4ce Mon Sep 17 00:00:00 2001 From: Miklos Bagi Date: Sun, 8 Sep 2024 14:23:50 +0200 Subject: [PATCH] Add env vars --- .github/workflows/debug.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 972f178..a8225a9 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -12,6 +12,16 @@ on: required: false default: false +env: + GLUETRANS_VPN_USERNAME: ${{ secrets.GLUETRANS_VPN_USERNAME }} + GLUETRANS_VPN_PASSWORD: ${{ secrets.GLUETRANS_VPN_PASSWORD }} + GLUETRANS_VPN_REGIONS: ${{ secrets.GLUETRANS_VPN_REGIONS }} + GLUETRANS_TRANSMISSION_USERNAME: ${{ secrets.GLUETRANS_TRANSMISSION_USERNAME }} + GLUETRANS_TRANSMISSION_PASSWORD: ${{ secrets.GLUETRANS_TRANSMISSION_PASSWORD }} + GLUETRANS_SONAR_ORGANIZATION: ${{ secrets.GLUETRANS_SONAR_ORGANIZATION }} + GLUETRANS_SONAR_PROJECT_KEY: ${{ secrets.GLUETRANS_SONAR_PROJECT_KEY }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + jobs: tmate-debug: if: ${{ github.event_name == 'workflow_dispatch' && github.actor == 'miklosbagi' && github.event.inputs.tmate_enabled == 'true' }}