Skip to content

wip

wip #8

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
workflow_dispatch:
concurrency:
group: build
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Docker Registry
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@v6
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/5stack-example-plugin:buildcache
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/5stack-example-plugin:buildcache,mode=max
tags: |
ghcr.io/${{ github.repository_owner }}/5stack-example-plugin:latest
ghcr.io/${{ github.repository_owner }}/5stack-example-plugin:${{ github.sha }}
- name: Delete old package versions
uses: actions/delete-package-versions@v5
with:
package-name: 5stack-example-plugin
package-type: container
min-versions-to-keep: 9
ignore-versions: '^buildcache$'