markdownlint-docker/.gitea/workflows/build.yaml

22 lines
421 B
YAML
Raw Normal View History

2023-04-13 20:17:58 +00:00
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
2023-04-13 20:45:21 +00:00
- name: Install docker
run:
apt-get update --yes
2023-04-13 20:46:18 +00:00
apt-get install --yes ca-certificates curl gnupg
2023-04-13 20:45:21 +00:00
2023-04-13 20:17:58 +00:00
- name: build application
2023-04-13 20:45:21 +00:00
run: make container-image/build CONTAINER_RUNTIME=docker