Skip to content

Commit

Permalink
PMM-7 build devcontainer with gh actions (#2176)
Browse files Browse the repository at this point in the history
* PMM-7 add an action to build the devcontainer

* PMM-7 do not build twice

* PMM-7 make the workflow run on call and dispatch
  • Loading branch information
Alex Tymchuk authored Jul 21, 2023
1 parent e92400f commit 4d38bb9
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Devcontainer
on:
workflow_dispatch:
inputs:
branch:
description: "The branch to build the devcontainer from"
default: "main"
required: true
type: string
workflow_call:
inputs:
branch:
description: "The branch to build the devcontainer from"
default: "main"
required: true
type: string

jobs:
devcontainer:
name: Build
runs-on: ubuntu-22.04
timeout-minutes: 15
strategy:
fail-fast: false
permissions:
packages: write

env:
LAB_DEVCONTAINER_IMAGE: perconalab/pmm-server:dev-container
GH_DEVCONTAINER_IMAGE: ghcr.io/percona/pmm:dev-container

steps:
- name: Check out code
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.branch }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to ghcr.io registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to docker.io registry
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push to registries
uses: docker/build-push-action@v4
with:
file: ./devcontainer.Dockerfile
push: true
tags: |
${{ env.GH_DEVCONTAINER_IMAGE }}
${{ env.LAB_DEVCONTAINER_IMAGE }}

0 comments on commit 4d38bb9

Please sign in to comment.