Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

initial commit

initial commit #5

Workflow file for this run

name: ci
on:
push:
branches:
- "*"
tags:
- "*"
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/meisterplan/actions-k8s-deploy/actions-k8s-deploy:${{ github.ref_name }}