Skip to content

Commit

Permalink
add env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sgmv committed Jun 4, 2024
1 parent 22019fb commit b61b303
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ env:
ANOTHER_VAR: anyText

jobs:
acc_tests:
name: acceptance tests
runs-on: ubuntu-22.04
environment: tests
# if: ${{ github.event.label.name == 'post' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.20"
- run: make acceptance
env:
AUTH_URL: ${{ secrets.AUTH_URL }}
PASSWORD: ${{ secrets.PASSWORD }}
USERNAME: ${{ secrets.USERNAME }}
USER_DOMAIN_NAME: ${{ secrets.USER_DOMAIN_NAME }}
FUNCTEST_PROJECT_NAME: ${{ env.FUNCTEST_PROJECT_NAME }}
debug:
name: Debug
runs-on: ubuntu-latest
Expand Down

0 comments on commit b61b303

Please sign in to comment.