Skip to content

Commit 6373c9e

Browse files
authored
Move tag creation to release step
1 parent fffff68 commit 6373c9e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: .github/workflows/push.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ jobs:
1414
- name: Get current date
1515
id: date
1616
run: echo "date=$(date +%F)" >> $GITHUB_OUTPUT
17-
- uses: rickstaa/action-create-tag@v1
18-
id: "tag_create"
19-
with:
20-
tag: ${{ steps.date.outputs.date }}
21-
tag_exists_error: false
22-
message: ""
2317
- name: Login to DockerHub Registry
2418
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
2519
- name: Build pyiron/base
@@ -111,6 +105,12 @@ jobs:
111105
- name: Get current date
112106
id: date
113107
run: echo "date=$(date +%F)" >> $GITHUB_OUTPUT
108+
- uses: rickstaa/action-create-tag@v1
109+
id: "tag_create"
110+
with:
111+
tag: ${{ steps.date.outputs.date }}
112+
tag_exists_error: false
113+
message: ""
114114
- name: cache_cmti
115115
uses: actions/cache/restore@v4
116116
with:

0 commit comments

Comments
 (0)