We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4b98f commit e57375cCopy full SHA for e57375c
.github/workflows/docker-image.yml
@@ -15,4 +15,20 @@ jobs:
15
steps:
16
- uses: actions/checkout@v4
17
- name: Build the Docker image
18
- run: docker build . --file Dockerfile --tag eos_connect:$(date +%s)
+ 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
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
0 commit comments