Skip to content

update srcget version #73

update srcget version

update srcget version #73

Workflow file for this run

name: Build
on: [push]
env:
BASE_IMAGE: ghcr.io/dellelce/mkit-base
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
- name: Mkit base image
run: make build-base BASE=$BASE_IMAGE && docker push $BASE_IMAGE