Skip to content

Commit

Permalink
CHnage the scene (AST-000) (#25)
Browse files Browse the repository at this point in the history
* modify release file

* changes

* changes
  • Loading branch information
greensd4 authored Aug 26, 2024
1 parent 0359fc7 commit 57a8fb8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,18 @@ jobs:
exit 1
fi
echo "formatted_title=$formatted_title" >> $GITHUB_ENV
- name: Get Latest Tag
id: get_tag
run: |
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "tag=${latest_tag}" >> $GITHUB_ENV
- name: Bump Patch Version
id: bump
uses: cbrgm/semver-bump-action@main
with:
current-version: ${{ steps.get_tag.outputs.tag }}
current-version: ${{ env.tag }}
bump-level: patch

- name: Create a new tag
run: |
git tag ${{ steps.bump.outputs.new_version }} -m "${{ steps.get_pr_title.outputs.pr_title }}"
Expand Down

0 comments on commit 57a8fb8

Please sign in to comment.