2022-11-10 09:53:02 +01:00
|
|
|
name: Build devcontainer image
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- .devcontainer/**
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 1 * *'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- .devcontainer/**
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-21 12:54:28 +02:00
|
|
|
- uses: actions/checkout@v3.5.3
|
2022-11-10 09:53:02 +01:00
|
|
|
- name: Log in to the GitHub container registry
|
2023-06-21 12:56:20 +02:00
|
|
|
uses: docker/login-action@v2.2.0
|
2022-11-10 09:53:02 +01:00
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2.1.0
|
|
|
|
- name: Set up Docker Buildx
|
2023-06-21 12:53:58 +02:00
|
|
|
uses: docker/setup-buildx-action@v2.7.0
|
2022-11-10 09:53:02 +01:00
|
|
|
- name: Build and Push
|
2023-06-21 12:54:10 +02:00
|
|
|
uses: docker/build-push-action@v4.1.1
|
2022-11-10 09:53:02 +01:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: .devcontainer/Dockerfile
|
|
|
|
tags: ghcr.io/${{ github.repository_owner }}/devcontainer:addons
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
platforms: linux/amd64,linux/arm64
|