Skip to content

RKE2 - Build and publish #2

RKE2 - Build and publish

RKE2 - Build and publish #2

Workflow file for this run

name: RKE2 - Build and publish
on:
workflow_dispatch:
defaults:
run:
working-directory: rke2
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
run: |
make build
make push