We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca5f6a commit 9752c6aCopy full SHA for 9752c6a
.github/workflows/nightly-build.yml
@@ -30,7 +30,11 @@ jobs:
30
steps:
31
- uses: actions/checkout@master
32
- uses: docker/setup-buildx-action@master
33
+ - uses: docker/login-action@v1
34
+ with:
35
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
36
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
37
- name: Build Tool
38
run: |
- NAME=$(echo ${{ matrix.tool }} | tr -cd '0-9A-Za-z-')
39
+ NAME=$(echo ${{ matrix.tool }} | tr -cd '0-9A-Za-z-_')
40
docker build -t ctftools/$NAME --build-arg PREINSTALL="${{ matrix.tool }}" .
0 commit comments