name: Build and Push Docker Image
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}/freeradius_exporter:${{ github.ref_name }}
Any chance you could add a github workflow ?
(this is untested but i think it should be ok)
Any chance you could add a github workflow ?
(this is untested but i think it should be ok)