Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Add linter to lint ebuilds (#11) #1

Add linter to lint ebuilds (#11)

Add linter to lint ebuilds (#11) #1

Workflow file for this run

# Builds and pushes the CI image used by the linter. This does NOT
# contain the registry or repository itself.
name: ci-image
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: ghcr.io/${{ github.owner }}/${{ github.repository }}:elint-base