Skip to content

Move micropython/repl.sh to console.sh #76

Move micropython/repl.sh to console.sh

Move micropython/repl.sh to console.sh #76

Workflow file for this run

name: Prebuild dev container
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ghcr.io/object-object/mlogv32-devcontainer
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push dev container image
uses: devcontainers/[email protected]
with:
subFolder: .github
imageName: ${{ env.IMAGE_NAME }}
cacheFrom: ${{ env.IMAGE_NAME }}
push: always