Remove Workflow From Dev

This commit is contained in:
2024-12-15 14:25:06 -05:00
parent b41a2d5c25
commit f6f9a2f8fd

View File

@@ -1,28 +0,0 @@
name: Build and Push Docker Image
on:
push:
branches:
- dev
schedule:
- cron: "0 2 * * 1,4"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Gitea Registry
run: echo ${{ secrets.BUILD }} | docker login gitea.awptechnologies.co -u ${{ vars.OWNER }} --password-stdin
- name: Build Docker Image
run: docker build --no-cache -t gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:dev .
- name: Push Docker Image to Gitea
run: docker push gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:dev