Skip to content

Commit

Permalink
Upgrade dependencies, move to Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeneke committed May 5, 2024
1 parent 934df85 commit 43b5b84
Show file tree
Hide file tree
Showing 4 changed files with 1,394 additions and 134 deletions.
103 changes: 0 additions & 103 deletions .circleci/config.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build
on: [push]

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: cbeneke
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: false
tags: cbeneke/hcloud-fip-controller:latest
Loading

0 comments on commit 43b5b84

Please sign in to comment.