Skip to content

fix base url on favicon #15

fix base url on favicon

fix base url on favicon #15

Workflow file for this run

name: Docker Publish
on:
push:
tags:
- "v*"
workflow_call:
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push observer_ward
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
target: observer_ward
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/observer_ward:latest
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/observer_ward:latest
cache-to: type=inline
- name: Build and push observer_ward
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
target: observer_ward_with_nuclei
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/observer_ward:nuclei
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/observer_ward:nuclei
cache-to: type=inline