Skip to content

redeploy redpanda

redeploy redpanda #91

Workflow file for this run

---
name: build
on:
push:
branches:
- "main"
paths:
- "hack/Dockerfile.tools"
- "hack/template/**"
permissions:
contents: read
packages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
IMAGE: ghcr.io/${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
env:
PUBLISH: "true"
REGISTRY: ghcr.io
USER: ${{ github.actor }}
PASS: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ env.USER }}
password: ${{ env.PASS }}
- name: build/deploy tools image
run: make deploy-image
- name: deploy manifests
run: make deploy