This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
Add diffrent message when alert level drops #9
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: Publikacja obrazu Dockera do ghcr.io | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- ".gitignore" | |
- "CNAME" | |
- "README.md" | |
- "LICENSE" | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sprawdź kod | |
uses: actions/checkout@v3 | |
- name: Zaloguj się do GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Zbuduj i wypchnij obraz Dockera | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: ghcr.io/dlsktech/airalert:latest |