From ab1880dd8022a6c078e975ca96675ca6b859b136 Mon Sep 17 00:00:00 2001 From: Ziyong Cheong Date: Fri, 10 Jul 2026 11:10:23 +0200 Subject: [PATCH] push Docker image on build --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f6ca67ac1..efcc3f2996 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,3 +32,12 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }} run: python3 ./script/release.py + - uses: docker/login-action@v4 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - uses: docker/build-push-action@v7 + with: + context: . + push: true + tags: tonsky/firacode:master