(ci): Remove github actions

This commit is contained in:
Blake Ridgway 2025-02-05 21:10:54 -06:00
parent 2d104e847b
commit e3ad00b2cf

View file

@ -1,37 +0,0 @@
name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Log in to Docker Hub or GitHub Container Registry
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# Build the Docker image
- name: Build Docker image
run: |
docker build -t rideaware-landing-page:latest .
# Tag the image
- name: Tag Docker image
run: |
docker tag rideaware-landing-page:latest username/rideaware-landing-page:latest
# Push the Docker image
- name: Push Docker image
run: |
docker push username/rideaware-landing-page:latest