You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed -i "s/Current Version:.*/Current Version: 3.0.0.${{ env.date }}.${{ env.counter }} (This line will be automatically updated to reflect the latest version)/" README.md
40
+
sed -i "s/Current Version:.*/Current Version: 3.0.0.${{ steps.current_date.outputs.date }}.${{ steps.increment_counter.outputs.counter }} (This line will be automatically updated to reflect the latest version)/" README.md
62
41
63
42
- name: Set up Git identity
64
43
run: |
@@ -68,5 +47,5 @@ jobs:
68
47
- name: Commit version and README update
69
48
run: |
70
49
git add VERSION.txt README.md
71
-
git commit -m "Update version to 3.0.0.${{ env.date }}.${{ env.counter }}"
50
+
git commit -m "Update version to 3.0.0.${{ steps.current_date.outputs.date }}.${{ steps.increment_counter.outputs.counter }}"
0 commit comments