Skip to content

Update CHANGELOG.md for Release v1.0.0 #1

Update CHANGELOG.md for Release v1.0.0

Update CHANGELOG.md for Release v1.0.0 #1

name: Build and publish a Vanilla Zephyr Docker images
on:
push:
tags:
- "v*"
env:
REGISTRY: ghcr.io
IMAGE_NAME: irnas/vanilla-zephyr
jobs:
publish:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
strategy:
matrix:
variant:
- zephyr_version: "v3.6.0"
mcuboot_version: "a4eda30f5b0cfd0cf15512be9dcd559239dbfc91"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
- name: Log into GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{github.actor}}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for CI image
id: meta-ci
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.variant.zephyr_version }}-ci
- name: Extract metadata for Dev image
id: meta-dev
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.variant.zephyr_version }}-dev
- name: Build and push CI image
id: push-ci
uses: docker/build-push-action@v5
with:
file: ./vanilla-zephyr/Dockerfile.ci
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta-ci.outputs.tags }}
labels: ${{ steps.meta-ci.outputs.labels }}
build-args: |
ZEPHYR_VERSION=${{ matrix.variant.zephyr_version }}
MCUBOOT_VERSION=${{ matrix.variant.mcuboot_version }}
- name: Build and push Dev image
id: push-dev
uses: docker/build-push-action@v5
with:
file: ./vanilla-zephyr/Dockerfile.dev
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta-dev.outputs.tags }}
labels: ${{ steps.meta-dev.outputs.labels }}
build-args: |
ZEPHYR_VERSION=${{ matrix.variant.zephyr_version }}
MCUBOOT_VERSION=${{ matrix.variant.mcuboot_version }}
BASE_IMAGE=${{ steps.meta-ci.outputs.tags }}