diff --git a/.github/workflows/deploy_docker.yml b/.github/workflows/deploy_docker.yml index 6270c1347..3239fa696 100644 --- a/.github/workflows/deploy_docker.yml +++ b/.github/workflows/deploy_docker.yml @@ -37,10 +37,18 @@ jobs: push: true tags: ${{ secrets.DOCKERHUB_USERNAME }}/owl:main - #- name: Build archlinux image - # uses: docker/build-push-action@v5 - # with: - # context: . - # file: ./docker/Dockerfile.archlinux - # push: true - # tags: ${{ secrets.DOCKERHUB_USERNAME }}/owl:archlinux \ No newline at end of file + - name: Build debian image + uses: docker/build-push-action@v5 + with: + context: . + file: ./docker/Dockerfile.debian + push: true + tags: ${{ secrets.DOCKERHUB_USERNAME }}/owl:debian + + - name: Build fedora image + uses: docker/build-push-action@v5 + with: + context: . + file: ./docker/Dockerfile.debian + push: true + tags: ${{ secrets.DOCKERHUB_USERNAME }}/owl:fedora \ No newline at end of file