Skip to content

Commit 9752c6a

Browse files
committed
push to docker
1 parent bca5f6a commit 9752c6a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/nightly-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@master
3232
- uses: docker/setup-buildx-action@master
33+
- uses: docker/login-action@v1
34+
with:
35+
username: ${{ secrets.DOCKERHUB_USERNAME }}
36+
password: ${{ secrets.DOCKERHUB_TOKEN }}
3337
- name: Build Tool
3438
run: |
35-
NAME=$(echo ${{ matrix.tool }} | tr -cd '0-9A-Za-z-')
39+
NAME=$(echo ${{ matrix.tool }} | tr -cd '0-9A-Za-z-_')
3640
docker build -t ctftools/$NAME --build-arg PREINSTALL="${{ matrix.tool }}" .

0 commit comments

Comments
 (0)