From 8b0799d7f095936b37237185cbd81bff91dad5d3 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 28 Mar 2020 18:38:29 +0100 Subject: [PATCH] Add upload step --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a109c3b..21a3ae9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,9 @@ jobs: - name: Build the image run: docker build -t ${{secrets.DOCKERHUB_USER}}/latex:infraonly -f ctan/Dockerfile.infraonly . + + - name: Upload the image + run: docker push ${{secrets.DOCKERHUB_USER}}/latex:infraonly create-minimal: runs-on: ubuntu-latest @@ -34,3 +37,6 @@ jobs: - name: Build the image run: docker build -t ${{secrets.DOCKERHUB_USER}}/latex:minimal -f ctan/Dockerfile.minimal . + + - name: Upload the image + run: docker push ${{secrets.DOCKERHUB_USER}}/latex:minimal