mirror of
https://github.com/gabrielkheisa/discord-active-developer-badge.git
synced 2024-11-22 19:41:55 +07:00
21 lines
290 B
YAML
21 lines
290 B
YAML
|
name: Docker Build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Build Docker image
|
||
|
run: docker build -t discord-badge .
|