- Paths ignore for all docker build - Remove security workflow (CVEs should be fixed by Alpine)
35 lines
842 B
YAML
35 lines
842 B
YAML
name: Docker build
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- .devcontainer
|
|
- .github/ISSUE_TEMPLATE
|
|
- .github/workflows/buildx-release.yml
|
|
- .github/workflows/buildx-branch.yml
|
|
- .github/workflows/buildx-latest.yml
|
|
- .github/workflows/dockerhub-description.yml
|
|
- .github/workflows/labels.yml
|
|
- .github/workflows/misspell.yml
|
|
- .github/CODEOWNERS
|
|
- .github/CONTRIBUTING.md
|
|
- .github/FUNDING.yml
|
|
- .github/labels.yml
|
|
- .vscode
|
|
- cmd/ovpnparser
|
|
- cmd/resolver
|
|
- doc
|
|
- .gitignore
|
|
- docker-compose.yml
|
|
- LICENSE
|
|
- README.md
|
|
- title.svg
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build image
|
|
run: docker build .
|