Skip to content

adjust tag message list to be more similar to topic message list styling #12

adjust tag message list to be more similar to topic message list styling

adjust tag message list to be more similar to topic message list styling #12

Workflow file for this run

name: Publish Docker image
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
multi_push_to_registry:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/ntfy-workbench:latest
ghcr.io/${{ github.repository_owner }}/ntfy-workbench:${{ github.sha }}