Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Commit 2493509

Browse files
[Create] docker-image.yml
1 parent fd28c07 commit 2493509

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
tags: [ 'v*' ] # Trigger on tags starting with 'v'
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Build the Docker image
13+
run: docker build . --file Dockerfile --tag personal-accounter:${{ github.ref_name }}

0 commit comments

Comments
 (0)