Skip to content

Commit

Permalink
Add workflow to build devcontainer (on push or on dispatch)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoravong committed Jan 11, 2024
1 parent 10124ad commit 05adf78
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions .devcontainer/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
53 changes: 53 additions & 0 deletions .github/workflows/publish-devcontainer-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Publish splunk-otel-collector-chart-dev-container

on:
push:
paths:
- '.devcontainer/version.txt'
workflow_dispatch:

jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Read version
run: echo "VERSION=$(cat ./.devcontainer/version.txt)" >> $GITHUB_ENV

- uses: docker/setup-buildx-action@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to GitHub Package Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
file: ./.devcontainer/Dockerfile
tags: |
ghcr.io/${{ github.repository }}/devcontainer:${{ env.VERSION }}
ghcr.io/${{ github.repository }}/devcontainer:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache

0 comments on commit 05adf78

Please sign in to comment.