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

v1.0.0

v1.0.0 #3

Workflow file for this run

name: Docker Image CI
on:
release:
types: [published]
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: ./builder.sh handler ghcr.io/${{ env.REPO }}-handler:${{ github.sha }}
- name: Prepare and build the container latest image
run: ./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: ./builder.sh reciever ghcr.io/${{ env.REPO }}-reciever:${{ github.sha }}
- name: Prepare and build the container latest image
run: ./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: ./builder.sh checker ghcr.io/${{ env.REPO }}-checker:${{ github.sha }}
- name: Prepare and build the container latest image
run: ./builder.sh checker ghcr.io/${{ env.REPO }}-checker:latest
deploy-stack:
runs-on: ubuntu-latest
needs: [build-website, build-handler, build-checker, build-reciever]

Check failure on line 76 in .github/workflows/build-and-push.yml

View workflow run for this annotation

GitHub Actions / Docker Image CI

Invalid workflow file

The workflow is not valid. .github/workflows/build-and-push.yml (Line: 76, Col: 13): Job 'deploy-stack' depends on unknown job 'build-website'.
steps:
- name: Invoke deployment hook
run: curl -X POST ${{ secrets.WEBHOOK_URL }}