Skip to content

Commit e57375c

Browse files
authored
Update docker-image.yml
1 parent 7e4b98f commit e57375c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/docker-image.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,20 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Build the Docker image
18-
run: docker build . --file Dockerfile --tag eos_connect:$(date +%s)
18+
run: docker build . --file Dockerfile --tag eos_connect_v0.$(date +%s)
19+
- name: Upload artifacts
20+
uses: actions/upload-artifact@v4
21+
with:
22+
name: eos_connect_v0.$(date +%s)
23+
path: |
24+
docker.io/library/eos_connect_v0.$(date +%s)
25+
26+
- uses: "marvinpinto/action-automatic-releases@latest"
27+
with:
28+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
29+
automatic_release_tag: "v0.$(date +%s)"
30+
draft: true
31+
prerelease: false
32+
title: "eos_connect dockerimage v0.$(date +%s)"
33+
files: |
34+
docker.io/library/eos_connect_v0.$(date +%s)

0 commit comments

Comments
 (0)