Build DevContainer image #29
This file contains hidden or 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
name: "Build DevContainer image" | |
on: | |
workflow_dispatch: | |
inputs: {} | |
push: | |
branches: | |
- main | |
- master | |
paths: | |
- .devcontainer/** | |
- pyproject.toml | |
- poetry.lock | |
- build.gradle | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout (GitHub) | |
uses: actions/checkout@v4 | |
- name: Set up QEMU for multi-architecture builds | |
uses: docker/setup-qemu-action@v3 | |
with: | |
image: tonistiigi/binfmt:qemu-v7.0.0-28 | |
- name: Setup Docker buildx for multi-architecture builds | |
uses: docker/setup-buildx-action@v3 | |
with: | |
use: true | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create envfile | |
run: | | |
echo 'GITHUB_USER=${{ github.repository_owner }}' >> .env | |
echo 'GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}' >> .env | |
- name: Prune | |
uses: vlaurin/action-ghcr-prune@v0.5.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
organization: ${{ github.repository_owner }} | |
container: ${{ github.event.repository.name }} | |
keep-last: 6 | |
continue-on-error: true | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
tags: ghcr.io/${{ github.repository }}:devcontainer | |
push: true | |
file: .devcontainer/Dockerfile | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
build-args: |- | |
FURY_AUTH=${{ secrets.FURY_AUTH }} |