Skip to content

Commit

Permalink
clean up build action
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Loftus committed Jan 27, 2025
1 parent 8879bfe commit f412321
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 393 deletions.
8 changes: 4 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Description
## Description
<!-- Describe the purpose of this pull request -->

# Changes Made
## Changes Made
<!-- Provide a brief overview of the changes implemented in this pull request -->

# Related Issues
## Related Issues
<!-- If this pull request resolves any GitHub issues, reference them here -->

# Additional Notes
## Additional Notes
<!-- Any additional information or context about the pull request -->
92 changes: 0 additions & 92 deletions .github/workflows/docker-dev.yml

This file was deleted.

180 changes: 0 additions & 180 deletions .github/workflows/docker_gleaner.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/push_to_dockerhub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Push to Docker Hub

on:
push:
branches:
- main

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and Push Docker Image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: internetofwater/gleaner:latest
43 changes: 0 additions & 43 deletions .github/workflows/release_gleaner.yml

This file was deleted.

Loading

0 comments on commit f412321

Please sign in to comment.