Skip to content

first commit with leap v4.0.4 #2

first commit with leap v4.0.4

first commit with leap v4.0.4 #2

Workflow file for this run

name: docker-build-and-push
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push to DockerHub
id: docker_build
uses: docker/build-push-action@v5
with:
push: true
tags: kryptokrauts/leap:${{github.ref_name}}