mirror of
https://github.com/edufeed-org/polloer.git
synced 2025-12-10 00:34:31 +00:00
ci/cd
This commit is contained in:
parent
def118101d
commit
633c6842b7
3 changed files with 53 additions and 0 deletions
27
.github/workflows/docker-publish.yml
vendored
Normal file
27
.github/workflows/docker-publish.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: Build and Push Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Log in to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Build and tag Docker image
|
||||
run: |
|
||||
docker build -t ${{ secrets.DOCKER_USERNAME }}/polloer:latest .
|
||||
|
||||
- name: Push to Docker Hub
|
||||
run: |
|
||||
docker push ${{ secrets.DOCKER_USERNAME }}/polloer:latest
|
||||
Loading…
Add table
Add a link
Reference in a new issue