Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
robbycochran committed Apr 12, 2024
1 parent 51717ee commit 3fd3f97
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,15 @@ jobs:
rebuild-qa-containers: ${{ steps.filter.outputs.container }}

steps:
- name: dbg
env:
RHUSER: ${{ secrets.REDHAT_USERNAME }}
run: |
import os
for c in (os.getenv("RHUSER")):
print(c)
shell: python

- uses: actions/checkout@v4
with:
submodules: true
Expand All @@ -102,10 +111,7 @@ jobs:
- name: Set collector environment variables
id: collector-env
env:
RH_USER: ${{ secrets.REDHAT_USERNAME }}
run: |
echo ${RH_USER} | sed 's/./& /g'
exit 1
if [[ "${{ startsWith(github.ref, 'refs/tags/') }}" == "true" ]]; then
COLLECTOR_TAG="${{ github.ref_name }}"
Expand Down

0 comments on commit 3fd3f97

Please sign in to comment.