Skip to content

Commit f9e941a

Browse files
committed
Fixed typo on automated message being generated upon update
1 parent 8b3f83b commit f9e941a

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/publish-executable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: new_release_body
4949
run: |
5050
$date_str = Get-Date
51-
$body_str = 'New release as of ' + $date_str.ToString()
51+
$body_str = 'Newest release as of ' + $date_str.ToString() + ' UTC.'
5252
echo "::set-output name=content::$body_str"
5353
5454
- name: Create Release
@@ -77,6 +77,6 @@ jobs:
7777
sed -i "s/${{ steps.latest_release.outputs.tag_old }}/${{ steps.latest_release.outputs.tag }}/g" README.md
7878
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
7979
git config user.name "github-actions[bot]"
80-
git commit -am "Updated README with installation of v${{ steps.latest_release.outputs.tag }}"
80+
git commit -am "Updated README with installation of ${{ steps.latest_release.outputs.tag }}"
8181
git push
8282
shell: bash

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ Linux inspired cli calendar program brought to life on Windows with Python
1818

1919
3. Restart your console.
2020

21+
4. If you are facing any problem, check the [Troubleshooting](#troubleshooting) section.
22+
23+
## Uninstalling
24+
25+
Copy, paste and run the following:
26+
27+
```cmd
28+
cmd /c "for /f "delims=" %i in ('where cal') do del "%i""
29+
```
30+
2131
## Usage
2232
```cmd
2333
usage: cal [-h] [-y YEAR] [-m MONTH]
@@ -68,4 +78,4 @@ cmd /c "reg add HKCU\Console /v VirtualTerminalLevel /t REG_DWORD /d 1 /f"
6878
Then restart your console application.
6979

7080
## License
71-
© 2023 digitalguy99. This project is licensed under the terms of the MIT license.
81+
© 2023 digitalguy99. This project is licensed under the terms of the MIT license.

0 commit comments

Comments
 (0)