Skip to content

devcontainer

devcontainer #24

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "devcontainer"
on:
workflow_dispatch:
push:
branches: ["main"]
paths: [".devcontainer/ci/**"]
pull_request:
branches: ["main"]
paths: [".devcontainer/ci/**"]
schedule:
- cron: "0 0 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
devcontainer:
if: ${{ github.repository == 'onedr0p/cluster-template' }}
name: publish
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
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
with:
platforms: linux/amd64 #,linux/arm64
- if: ${{ github.event_name != 'pull_request' }}
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: devcontainers/ci@v0.3
env:
BUILDX_NO_DEFAULT_ATTESTATIONS: true
with:
imageName: ghcr.io/${{ github.repository }}/devcontainer
# cacheFrom: ghcr.io/${{ github.repository }}/devcontainer
imageTag: base,latest
platform: linux/amd64 #,linux/arm64
configFile: .devcontainer/ci/devcontainer.json
push: ${{ github.event_name == 'pull_request' && 'never' || 'always' }}