markdownlint-docker/.gitea/workflows/build.yaml
2023-04-13 22:46:57 +02:00

23 lines
447 B
YAML

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-x86_64:
runs-on: x86_64
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: Install docker
run: |
apt-get update
apt-get upgrade --yes
apt-get install --yes ca-certificates curl gnupg
- name: build application
run: make container-image/build CONTAINER_RUNTIME=docker