From 44e01fff93ebd1d43126d04b2ba9758c1646e788 Mon Sep 17 00:00:00 2001 From: Bishoy Hanna <358153+bishoyh@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:56:54 -0700 Subject: [PATCH] Create build-publish.yml --- .github/workflows/build-publish.yml | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build-publish.yml diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml new file mode 100644 index 0000000..5e4418f --- /dev/null +++ b/.github/workflows/build-publish.yml @@ -0,0 +1,34 @@ +name: Build and Publish Distroless kallisto + +on: + push: + branches: + - main + tags: + - 'v*' + +jobs: + build-publish: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + + - name: Build and push + id: docker_build + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + push: true + tags: picotainers/muscle:latest + + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }}