Skip to content

Commit 048d1c3

Browse files
committed
Fix last updated string interpolation in archive-examples.yml
1 parent d4825b7 commit 048d1c3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/archive-examples.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@
4444
run: |
4545
git rm -f *.zip 2>/dev/null || true
4646
47-
cat > README.md << 'EOF'
47+
CURRENT_DATE=$(date -u '+%Y-%m-%d %H:%M UTC')
48+
49+
cat > README.md << EOF
4850
# Kotlin DataFrame - Example Projects Archives
4951
5052
Automatically generated archives of example projects.
@@ -63,7 +65,7 @@
6365
6466
---
6567
66-
Last updated: $(date -u '+%Y-%m-%d %H:%M:%S UTC')
68+
Last updated: $CURRENT_DATE
6769
6870
Source commit: ${{ github.sha }}
6971
EOF

0 commit comments

Comments
 (0)