Skip to content

Commit

Permalink
exporting environment variables inside runners
Browse files Browse the repository at this point in the history
  • Loading branch information
kneerunjun committed Jun 4, 2024
1 parent eb694e1 commit 6d4222b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
push:
branches:
- v.nightly.0
# env:
# - DEVICEREG_URL:${{ vars.DEVICEREG_URL }}
env:
DEVICEREG_URL:${{ vars.DEVICEREG_URL }}
# - BOT_BASEURL:${{ vars.BOT_BASEURL }}
# - BOT_UNAME=${{ vars.BOT_UNAME }}
# - BOT_TOK=${{ vars.BOT_TOK }}
Expand All @@ -21,6 +21,6 @@ jobs:
go-version: '1.22.3'
- name: unittests
run: |
echo ${{ secrets.DEVICEREG_URL}}
echo $DEVICEREG_URL
go clean --testcache
go test -v -timeout 30s -run TestTelegGetMe

0 comments on commit 6d4222b

Please sign in to comment.