Skip to content

Devcontainer

Devcontainer #2751

Workflow file for this run

name: Devcontainer
on:
workflow_dispatch:
inputs:
branch:
description: "The branch to build the devcontainer from"
default: "v3"
required: true
type: string
workflow_call:
inputs:
branch:
description: "The branch to build the devcontainer from"
default: "v3"
required: true
type: string
permissions:
contents: read
jobs:
devcontainer:
name: Devcontainer
runs-on: ubuntu-22.04
timeout-minutes: 15
permissions:
packages: write
env:
LAB_DEVCONTAINER_IMAGE: perconalab/pmm-server:3-dev-container
GH_DEVCONTAINER_IMAGE: ghcr.io/percona/pmm:3-dev-container
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.branch }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
- name: Login to ghcr.io registry
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to docker.io registry
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push to registries
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
with:
file: ./.devcontainer/Dockerfile
context: .
push: true
tags: |
${{ env.GH_DEVCONTAINER_IMAGE }}
${{ env.LAB_DEVCONTAINER_IMAGE }}