mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 00:47:25 -06:00
15 lines
262 B
YAML
15 lines
262 B
YAML
name: Build docker image
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'Dockerfile'
|
|
|
|
jobs:
|
|
build-docker-image:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- run: docker build -t shlink-docker-image:temp .
|