Skip to content

Commit

Permalink
Clean up fork's workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rassie committed Jul 18, 2024
1 parent a571d0a commit 246ff9a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 186 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/anchore-syft.yml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

30 changes: 6 additions & 24 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: Build and publish main image regularly

on:
schedule:
- cron: '25 0 * * *'
workflow_dispatch:

push:
branches:
- main

jobs:
nightly_build:
master_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -16,17 +15,12 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build standard version
id: docker_build
uses: docker/build-push-action@v5
Expand All @@ -35,18 +29,6 @@ jobs:
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
push: ${{ github.event_name != 'pull_request' }}
tags: >-
plndr/kube-vip:${{ github.ref_name }},
ghcr.io/kube-vip/kube-vip:${{ github.ref_name }}
- name: Build iptables version
id: docker_build_iptables
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile_iptables
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
push: ${{ github.event_name != 'pull_request' }}
tags: >-
plndr/kube-vip-iptables:${{ github.ref_name }},
ghcr.io/kube-vip/kube-vip-iptables:${{ github.ref_name }}
ghcr.io/kurzdigital/kube-vip:${{ github.ref_name }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
56 changes: 0 additions & 56 deletions .github/workflows/release.yaml

This file was deleted.

0 comments on commit 246ff9a

Please sign in to comment.