chore: update workflows #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push to Quay | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: [Build and Push to Quay] | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-push-to-quay: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Short SHA | |
uses: benjlevesque/[email protected] | |
id: short-sha | |
with: | |
length: 7 | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Log into Quay | |
run: echo "${{ secrets.QUAY_PASS }}" | docker login https://quay.io -u ${{ secrets.QUAY_USER }} --password-stdin | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
with: | |
image: tonistiigi/binfmt:latest | |
platforms: all | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
with: | |
install: true | |
version: latest | |
driver-opts: image=moby/buildkit:master | |
- name: Build and push amd64 | |
uses: docker/[email protected] | |
with: | |
context: ./ | |
file: ./Dockerfile | |
push: true | |
provenance: false | |
tags: | | |
quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:amd64 | |
quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:amd64_commit-${{ steps.short-sha.outputs.sha }} | |
platforms: linux/amd64 | |
build-args: | | |
OVERLAY_ARCH=amd64 | |
- name: Build and push arm64 | |
uses: docker/[email protected] | |
with: | |
context: ./ | |
file: ./Dockerfile | |
push: true | |
provenance: false | |
tags: | | |
quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:arm64 | |
quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:arm64_commit-${{ steps.short-sha.outputs.sha }} | |
platforms: linux/arm64 | |
build-args: | | |
OVERLAY_ARCH=aarch64 | |
- name: Build and push armv7 | |
uses: docker/[email protected] | |
with: | |
context: ./ | |
file: ./Dockerfile | |
push: true | |
provenance: false | |
tags: | | |
quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:armv7 | |
quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:armv7_commit-${{ steps.short-sha.outputs.sha }} | |
platforms: linux/arm/v7 | |
build-args: | | |
OVERLAY_ARCH=arm | |
- name: Create and push manifest images | |
uses: Noelware/docker-manifest-action@master | |
with: | |
inputs: quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:latest | |
images: quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:amd64,quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:arm64,quay.io/${{ secrets.QUAY_USER }}/docker-goaccess:armv7 | |
push: true | |
- name: ntfy success notifications | |
uses: niniyas/ntfy-action@master | |
if: success() | |
with: | |
url: ${{ secrets.NTFY_URL }} | |
topic: ${{ secrets.NTFY_TOPIC }} | |
tags: github,action,+1,partying_face | |
priority: 4 | |
image: true | |
actions: 'default' | |
details: 'Workflow has been completed successfully!' | |
headers: '${{ secrets.NTFY_HEADERS }}' | |
- name: ntfy failed notifications | |
uses: niniyas/ntfy-action@master | |
if: failure() | |
with: | |
url: ${{ secrets.NTFY_URL }} | |
topic: ${{ secrets.NTFY_TOPIC }} | |
tags: github,action,failed,rotating_light | |
priority: 5 | |
image: true | |
actions: 'default' | |
details: 'Workflow has failed!' | |
headers: '${{ secrets.NTFY_HEADERS }}' | |
- name: ntfy cancelled notifications | |
uses: niniyas/ntfy-action@master | |
if: cancelled() | |
with: | |
url: ${{ secrets.NTFY_URL }} | |
topic: ${{ secrets.NTFY_TOPIC }} | |
tags: github,action,cancelled,skull | |
details: 'Workflow has been cancelled!' | |
headers: '${{ secrets.NTFY_HEADERS }}' | |
image: true | |
actions: 'default' |