Skip to content

Commit

Permalink
fix: trying to solve secrets
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <[email protected]>
  • Loading branch information
shanduur committed Oct 25, 2024
1 parent 86565dd commit 2c80c48
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
with:
go-version-file: ./go.mod
cache: false
- run: |
export LINODE_TOKEN=${{ secrets.LINODE_TOKEN }}
- env:
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}
run: |
export LINODE_TOKEN=$LINODE_TOKEN
make \
test-integration
Expand All @@ -41,8 +43,10 @@ jobs:
with:
go-version-file: ./go.mod
cache: false
- run: |
export LINODE_TOKEN=${{ secrets.LINODE_TOKEN }}
- env:
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}
run: |
export LINODE_TOKEN=$LINODE_TOKEN
make \
IMG=localhost:5005/linode-cosi-driver \
TAG=e2e-${{ github.ref_name }} \
Expand Down

0 comments on commit 2c80c48

Please sign in to comment.