Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyLuLiu committed Aug 20, 2024
1 parent 7a8db41 commit a88c2cf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ on:

jobs:
tests:
runs-on: [self-hosted, linux, testing-farm]
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
- name: test secret
shell: bash
env:
NAME: ${{ secrets.QUAY_IO_USERNAME }}
QUAY_NAME: ${{ secrets.QUAY_IO_USERNAME }}
run: |
echo $NAME
echo "$NAME"
echo ${{ NAME }}
echo ${{ env.NAME }}
echo $QUAY_NAME
echo "$QUAY_NAME"
echo ${{ QUAY_NAME }}
echo ${{ env.QUAY_NAME }}

0 comments on commit a88c2cf

Please sign in to comment.