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

chore: remove build success msg hook #34

chore: remove build success msg hook

chore: remove build success msg hook #34

Workflow file for this run

name: Elk Docker Build
on:
push:
branches:
- nya
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate .env file
run: 'echo "$DOT_ENV" > .env'
shell: bash
env:
DOT_ENV: ${{ secrets.DOT_ENV }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: ghcr.io/nyawork/elk:latest