From fb235bdeecf0352817fe94bbfea9a91e143ebdbb Mon Sep 17 00:00:00 2001 From: BtbN Date: Thu, 3 Sep 2020 14:41:26 +0200 Subject: [PATCH] Make sure base image is up to date --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69bb41b..9d22412 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,11 +16,12 @@ jobs: with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} + always_pull: true repository: btbn/ffmpeg-builder tags: base path: base build_target_bases: - name: Build target base images + name: Build target base image needs: build_base runs-on: ubuntu-latest strategy: @@ -36,11 +37,12 @@ jobs: with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} + always_pull: true repository: btbn/ffmpeg-builder tags: base-${{ matrix.target }} path: base-${{ matrix.target }} build_targets: - name: Build target images + name: Build target-variant image needs: build_target_bases runs-on: ubuntu-latest strategy: @@ -59,5 +61,6 @@ jobs: with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} + always_pull: true repository: btbn/ffmpeg-builder tags: ${{ matrix.target }}-${{ matrix.variant }}