mirror of
https://github.com/embedd-actions/platformio-ci.git
synced 2024-12-25 00:12:52 +03:00
commit
52b940d324
42
.github/workflows/build_image.yml
vendored
Normal file
42
.github/workflows/build_image.yml
vendored
Normal file
@ -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
|
1
Action.Dockerfile
Normal file
1
Action.Dockerfile
Normal file
@ -0,0 +1 @@
|
||||
FROM sergeyladanov/platformio:v3
|
@ -10,7 +10,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Build
|
||||
uses: embedd-actions/platformio-ci@v2
|
||||
uses: embedd-actions/platformio-ci@v3
|
||||
|
||||
|
||||
```
|
||||
|
@ -2,7 +2,7 @@ name: 'Platformio build'
|
||||
description: 'Building platformio projects'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
image: 'Action.Dockerfile'
|
||||
args:
|
||||
- pio
|
||||
- run
|
||||
|
Loading…
Reference in New Issue
Block a user