-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test2: remmoved apostrophes when assigning DATE_FMT
- Loading branch information
1 parent
5a4862c
commit ea43809
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,11 +47,11 @@ jobs: | |
- name: Set draft date-time formatting | ||
if: github.event_name != 'release' | ||
run: | | ||
echo "DATE_FMT='+%d %B, %Y %H:%M:%SZ'" >> "$GITHUB_ENV" | ||
echo "DATE_FMT=+%d %B, %Y %H:%M:%SZ" >> "$GITHUB_ENV" | ||
- name: Set "final" tag and date-time formatting | ||
if: github.event_name == 'release' | ||
run: | | ||
echo "FINAL_TAG=-a final" >> "$GITHUB_ENV"; echo "DATE_FMT='+%d %B, %Y'" >> "$GITHUB_ENV" | ||
echo "FINAL_TAG=-a final" >> "$GITHUB_ENV"; echo "DATE_FMT=+%d %B, %Y" >> "$GITHUB_ENV" | ||
# Build cf-conventions.html using the Analog-inc asciidoctor-action | ||
- name: Build cf-conventions.html | ||
uses: Analog-inc/[email protected] | ||
|