-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add an action for the devcontainer
- Loading branch information
Alex Tymchuk
authored
May 24, 2023
1 parent
29017d9
commit e432e28
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Devcontainer | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- pmm-* | ||
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/atymchuk/pmm-server-dev:rh7 | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to the registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
file: ./devcontainer.Dockerfile | ||
push: true | ||
tags: ${{ env.GH_DEVCONTAINER_IMAGE }} | ||
|
||
- name: Run debug commands on failure | ||
if: ${{ failure() }} | ||
run: | | ||
pwd | ||
env | ||
go env | ||
git status |