Skip to content

[#59072] scripts: prepare_zephyr_env.sh: Prevent using Zephyr SDK v0.… #2

[#59072] scripts: prepare_zephyr_env.sh: Prevent using Zephyr SDK v0.…

[#59072] scripts: prepare_zephyr_env.sh: Prevent using Zephyr SDK v0.… #2

Workflow file for this run

name: Publish Docker image for demo
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
PublishDocker:
if: github.repository == 'antmicro/kenning-zephyr-runtime'
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- name: Checkout sources
uses: actions/checkout@v4
- name: Build Docker image
run: docker build . -f environments/Dockerfile --tag ghcr.io/${{ github.repository }}
- name: Login to registry
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Push image to registry
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
run: docker push ghcr.io/antmicro/kenning-zephyr-runtime:latest