Skip to content

Commit

Permalink
feat: 🎸 add github pipeline for building docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
halitsever committed Sep 5, 2023
1 parent b1a3bb0 commit 7c4c10b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pipeline

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Docker Hub Auth
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASS }}
- name: Build & Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: halitsever/girici-web-proxy:latest

0 comments on commit 7c4c10b

Please sign in to comment.