Skip to content

Commit

Permalink
Remove unused GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
minpeter committed Mar 13, 2024
1 parent 8c53b1e commit 3dc5aae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 133 deletions.
111 changes: 0 additions & 111 deletions .github/workflows/gh-image-bp.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
push:
branches: ["main"]

env:
REGISTRY: ghcr.io
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -21,11 +25,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push with Buildx
uses: docker/build-push-action@v5
Expand All @@ -34,4 +39,4 @@ jobs:
file: ./Dockerfile
platforms: linux/arm64, linux/amd64
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/iplogger:latest
tags: ${{ env.REGISTRY_IMAGE }}:latest, ${{ env.REGISTRY_IMAGE }}:${{ github.sha }}
18 changes: 0 additions & 18 deletions .github/workflows/self-hosted-deploy.yml

This file was deleted.

0 comments on commit 3dc5aae

Please sign in to comment.