We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1319e69 commit 476b221Copy full SHA for 476b221
1 file changed
.github/workflows/docker-image.yml
@@ -7,12 +7,14 @@ on:
7
branches: [ "main" ]
8
9
jobs:
10
-
11
build:
12
13
runs-on: ubuntu-latest
14
15
steps:
16
- uses: actions/checkout@v4
17
- - name: Build the Docker image
18
- run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
+
+ - name: Build the Bot image
+ run: docker build . --file src/LinkTracker.Bot/Dockerfile --tag linktracker-bot:$(date +%s)
19
+ - name: Build the Scrapper image
20
+ run: docker build . --file src/LinkTracker.Scrapper/Dockerfile --tag linktracker-scrapper:$(date +%s)
0 commit comments