mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 00:38:46 +03:00
14 lines
262 B
YAML
14 lines
262 B
YAML
name: Build docker image
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'Dockerfile'
|
|
|
|
jobs:
|
|
build-docker-image:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- run: docker build -t shlink-docker-image:temp .
|