Skip to content

Commit 5b6bad9

Browse files
committed
pull before authing
1 parent 2c712e9 commit 5b6bad9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/nightly-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@master
3939
- uses: docker/setup-buildx-action@master
40+
- name: Pull Base
41+
run: |
42+
docker pull ubuntu:noble
4043
- uses: docker/login-action@v1
4144
with:
4245
username: ${{ secrets.DOCKERHUB_USERNAME }}
@@ -45,4 +48,6 @@ jobs:
4548
run: |
4649
NAME=$(echo ${{ matrix.tool }} | tr -cd '0-9A-Za-z-_')
4750
docker build -t ctftools/$NAME --build-arg PREINSTALL="${{ matrix.tool }}" .
51+
- name: Push Tool
52+
run: |
4853
docker push ctftools/$NAME

0 commit comments

Comments
 (0)