From e64a24d910186d53f420a09c0a9a86729e39df91 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Tue, 19 Sep 2023 00:45:13 +0300 Subject: [PATCH 1/5] Rename Dockerfile to Image.Dockerfile --- Dockerfile => Image.Dockerfile | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Dockerfile => Image.Dockerfile (100%) diff --git a/Dockerfile b/Image.Dockerfile similarity index 100% rename from Dockerfile rename to Image.Dockerfile From 092e8366324ddbb5b2f3e406e7aa25d12c5099b2 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Tue, 19 Sep 2023 00:46:08 +0300 Subject: [PATCH 2/5] Create Action.Dockerfile --- Action.Dockerfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Action.Dockerfile diff --git a/Action.Dockerfile b/Action.Dockerfile new file mode 100644 index 0000000..9d18eca --- /dev/null +++ b/Action.Dockerfile @@ -0,0 +1 @@ +FROM sergeyladanov/platformio:v3 From c4091ca2eea50c2d549111fe4328dbed446a0912 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Tue, 19 Sep 2023 00:46:39 +0300 Subject: [PATCH 3/5] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f06496c..a4840b4 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'Platformio build' description: 'Building platformio projects' runs: using: 'docker' - image: 'Dockerfile' + image: 'Action.Dockerfile' args: - pio - run From 485d021b0176541849cd8a6b609b416859d90b6a Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Tue, 19 Sep 2023 00:48:07 +0300 Subject: [PATCH 4/5] Create build_image.yml --- .github/workflows/build_image.yml | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/build_image.yml diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml new file mode 100644 index 0000000..7c0a024 --- /dev/null +++ b/.github/workflows/build_image.yml @@ -0,0 +1,42 @@ +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/platformio + + - 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: . + file: Image.Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + platforms: linux/amd64,linux/arm64 From 6f99e9d24f898332a2d3ce6c1060c3442bc00c11 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Tue, 19 Sep 2023 00:48:29 +0300 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 382d540..c09cbb2 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - name: Build - uses: embedd-actions/platformio-ci@v2 + uses: embedd-actions/platformio-ci@v3 ```