Skip to content

Commit 0169e46

Browse files
committed
debug
1 parent 70a6995 commit 0169e46

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ env:
1313
GH_CONTAINER_REGISTRY_USERNAME: shepmaster
1414
AWS_ACCESS_KEY_ID: AKIAWESVHZ3J6SV43YWE
1515
jobs:
16+
debug:
17+
runs-on: ubuntu-latest
18+
environment: CI
19+
steps:
20+
- run: echo '${{ secrets.AWS_SECRET_ACCESS_KEY }}' | wc
21+
- run: echo '${{ secrets.DOCKER_HUB_TOKEN }}' | wc
22+
- run: echo '${{ secrets.GH_CONTAINER_REGISTRY_TOKEN }}' | wc
23+
- run: echo '${{ secrets.PLAYGROUND_GITHUB_TOKEN }}' | wc
1624
build_compiler_containers:
1725
name: Build ${{ matrix.channel }} compiler container
1826
runs-on: ubuntu-latest

ci/workflows.yml

+9
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,15 @@ workflows:
219219
<<: *global_env
220220

221221
jobs:
222+
debug:
223+
runs-on: ubuntu-latest
224+
environment: CI
225+
steps:
226+
- run: echo '${{ secrets.AWS_SECRET_ACCESS_KEY }}' | wc
227+
- run: echo '${{ secrets.DOCKER_HUB_TOKEN }}' | wc
228+
- run: echo '${{ secrets.GH_CONTAINER_REGISTRY_TOKEN }}' | wc
229+
- run: echo '${{ secrets.PLAYGROUND_GITHUB_TOKEN }}' | wc
230+
222231
build_compiler_containers:
223232
<<: *build_compiler_containers_job
224233
environment: CI

0 commit comments

Comments
 (0)