Skip to content

Commit

Permalink
create cicd action
Browse files Browse the repository at this point in the history
  • Loading branch information
gilmaimon committed Jul 27, 2024
1 parent 5f4ba80 commit 170ff34
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build and Push Docker Image

on:
push:
branches:
- '**' # Triggers on push to any branch
workflow_dispatch: # Manually trigger the workflow

jobs:
build:
runs-on: ubuntu-latest

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

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

- name: Build and export
uses: docker/build-push-action@v6
with:
tags: server:latest
outputs: type=docker,dest=/tmp/myimage.tar

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: myimage
path: /tmp/myimage.tar

deploy:
needs: build # Ensure deploy job waits for build job
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Download artifact
uses: actions/download-artifact@v4
with:
name: myimage
path: /tmp

- name: Load image
run: |
docker load --input /tmp/myimage.tar
docker image ls -a
- name: Push Docker image
run: docker tag server:latest tapud/ardu-badge:latest && docker push tapud/ardu-badge:latest

0 comments on commit 170ff34

Please sign in to comment.