Feature/val 1404 eip 7251 head watcher alerts for new el requests #106
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 Docker image | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
- main | |
paths-ignore: | |
- ".github/**" | |
- "README.md" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build image | |
uses: docker/build-push-action@v4 | |
with: | |
tags: app:ci | |
push: false |