Skip to content

Commit

Permalink
docs: include example values of input variables
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeg committed Jun 17, 2024
1 parent 9ae8ea4 commit 3c1e2ac
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ jobs:
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
- name: parse input
run: |
VERSION=$(echo "${{ inputs.version }}" | sed -E "s/^v//g")
echo $VERSION
VERSION=$(echo "${{ inputs.version }}" | sed -E "s/^v//g") # Ex: 1.2.3
echo "VERSION=$VERSION" >> $GITHUB_ENV
DATE=$(date +"%Y-%m-%d")
DATE=$(date +"%Y-%m-%d") # Ex: 2022-02-22
echo "DATE=$DATE" >> $GITHUB_ENV
- name: bump versions
run: |
Expand Down

0 comments on commit 3c1e2ac

Please sign in to comment.