Skip to content

Commit

Permalink
Add GitHub Actions workflow to build docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Oct 26, 2024
1 parent 82bc5a1 commit 7787bbd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
./.github
./build
./coverage
./node_modules
./test
./home
./data
./docs
./home
./node_modules
./test
./.eslintrc
./docker-compose*
./indocker
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/docker-image-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build and publish docker image

on:
push:
tags:
- 'v*'

jobs:
build:
uses: shlinkio/github-actions/.github/workflows/docker-publish-image.yml@main
secrets: inherit
with:
image-name: shlinkio/shlink-dashboard
version-arg-name: VERSION
platforms: 'linux/arm64/v8,linux/amd64'

0 comments on commit 7787bbd

Please sign in to comment.