Skip to content

feat: add renovate config file (#121) #42

feat: add renovate config file (#121)

feat: add renovate config file (#121) #42

Workflow file for this run

name: Docker (Main)
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
run: |
docker build \
--build-arg="COMMIT_SHA=${{ github.sha }}"\
--build-arg="IMAGE_VERSION=bleeding" \
-t ghcr.io/${{ github.repository }}:bleeding .
docker push ghcr.io/${{ github.repository }}:bleeding