Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Birmiwal, Rahul R committed Nov 16, 2023
1 parent bd099e1 commit 9c22b2b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/publish_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3

- name: Get latest tag
id: get_tag
- name: Get latest tag And version
id: get_tag_and_version
run: |
git fetch -a
echo "latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_ENV
echo "$env:$latest_tag"
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "latest_tag=$latest_tag" >> $GITHUB_ENV
echo "ello worldD"
echo "$latest_tag"
version = $(latest_tag | cut -d'v' -f2)
- name: Extract version from tag
id: extract_version
Expand Down

0 comments on commit 9c22b2b

Please sign in to comment.