Skip to content

Initial bits of documentation on writing a kernel (#66) #54

Initial bits of documentation on writing a kernel (#66)

Initial bits of documentation on writing a kernel (#66) #54

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches: [ main ]
release:
types: [ published ]
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:${{ github.sha }}