From 2126ca64b2e1b5b54f639a00a7459d27e026eda9 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Mon, 18 Sep 2023 00:36:29 +0300 Subject: [PATCH] Create image_publishing.yml --- .github/workflows/image_publishing.yml | 41 ++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/image_publishing.yml diff --git a/.github/workflows/image_publishing.yml b/.github/workflows/image_publishing.yml new file mode 100644 index 0000000..d9f5c59 --- /dev/null +++ b/.github/workflows/image_publishing.yml @@ -0,0 +1,41 @@ +name: Publish image + +on: + push: + tags: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + # Checkout repository + - name: Checkout code + uses: actions/checkout@v3 + + + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: sergeyladanov/nrf-connect-sdk + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + platforms: linux/amd64,linux/arm64