-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f76f54
commit 5518957
Showing
1 changed file
with
12 additions
and
0 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 |
---|---|---|
|
@@ -24,3 +24,15 @@ jobs: | |
title: ${{ steps.semvers.outputs.patch }} | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
- name: Write File | ||
# You may pin to the exact commit or the version. | ||
# uses: DamianReeves/write-file-action@0a7fcbe1960c53fc08fe789fa4850d24885f4d84 | ||
uses: DamianReeves/[email protected] | ||
with: | ||
# The path to the file to write | ||
path: /version.h | ||
# The contents of the file | ||
contents: const char* getVsersion() { return "1.0.4";} | ||
# The mode of writing to use: `overwrite`, `append`, or `preserve`. | ||
write-mode: overwrite | ||
|