Skip to content

Commit

Permalink
Update nightly-bump.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwieds authored Nov 14, 2024
1 parent 987df25 commit 3f68ea3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nightly-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
uses: actions/checkout@v3
# create a file at src/date.txt with the current date
- name: Create date file
run: echo $(date) > src/date.txt
run: |
mkdir -p src
echo $(date) > src/date.txt
# commit the file
- name: Commit date file
run: |
Expand Down

0 comments on commit 3f68ea3

Please sign in to comment.