Skip to content

Commit

Permalink
[bug] Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rradczewski committed Jan 20, 2025
1 parent f45b1e0 commit 70c41c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ clean:
README.md: website/index.md README.md.head
cp README.md.head $@
sed '1,/{% # CUT FOR README %}/d' website/index.md >> $@
# Replace double escaped YAML substitution in GithubAction reference
sed -i "s/'{{ \(.*\) }}'/ \1 /" $@

.PHONY: $(addprefix out/trunkver_, $(PLATFORMS))
$(addprefix out/trunkver_, $(PLATFORMS)): test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It is a syntax-compatible **drop-in replacement** for SemVer and replaces the ve

- name: Print trunkver
env:
TRUNKVER: ${{'{{ steps.trunkver.outputs.trunkver }}'}}
TRUNKVER: ${{ steps.trunkver.outputs.trunkver }}
run: |
echo "$TRUNKVER"
```
Expand Down

0 comments on commit 70c41c1

Please sign in to comment.