Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
added ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joshika39 committed Mar 27, 2024
1 parent a9eef97 commit 05fed55
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Docker Image CI

on:
release: ["publish"]

jobs:
build-handler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Log in to GitHub container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_PUSH }}

- name: Lowercase the repo name
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Prepare and build the container hashed image
run: ./scripts/builder.sh handler ghcr.io/${{ env.REPO }}-handler:${{ github.sha }}
- name: Prepare and build the container latest image
run: ./scripts/builder.sh handler ghcr.io/${{ env.REPO }}-handler:latest

build-reciever:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Log in to GitHub container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_PUSH }}

- name: Lowercase the repo name
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Prepare and build the container hashed image
run: ./scripts/builder.sh reciever ghcr.io/${{ env.REPO }}-reciever:${{ github.sha }}
- name: Prepare and build the container latest image
run: ./scripts/builder.sh reciever ghcr.io/${{ env.REPO }}-reciever:latest

build-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Log in to GitHub container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_PUSH }}

- name: Lowercase the repo name
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Prepare and build the container hashed image
run: ./scripts/builder.sh checker ghcr.io/${{ env.REPO }}-checker:${{ github.sha }}
- name: Prepare and build the container latest image
run: ./scripts/builder.sh checker ghcr.io/${{ env.REPO }}-checker:latest
deploy-stack:
runs-on: ubuntu-latest
needs: [build-website, build-handler, build-checker, build-reciever]
steps:
- name: Invoke deployment hook
run: curl -X POST ${{ secrets.WEBHOOK_URL }}

0 comments on commit 05fed55

Please sign in to comment.