Skip to content

Commit

Permalink
PMM-7 add an action to build the devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Tymchuk committed Jun 3, 2023
1 parent fa91137 commit fd2732e
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Devcontainer
on:
push:
branches:
- main

workflow_dispatch:

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-server:dev-container

steps:
- name: Check out code
uses: actions/checkout@v3

- 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 ghcr.io
uses: docker/build-push-action@v4
with:
file: ./devcontainer.Dockerfile
push: true
tags: ${{ env.GH_DEVCONTAINER_IMAGE }}

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

0 comments on commit fd2732e

Please sign in to comment.