Add upload step

This commit is contained in:
Marcel Schwarz 2020-03-28 18:38:29 +01:00
parent 97c5835d35
commit 8b0799d7f0

View File

@ -23,6 +23,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
needs: [create-infraonly]
@ -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