Skip to content
This repository has been archived by the owner on Jun 18, 2023. It is now read-only.

Commit

Permalink
build: fix incorrect id for git-ver step
Browse files Browse the repository at this point in the history
  • Loading branch information
FlysoftBeta committed Dec 28, 2022
1 parent 45c2909 commit 32294f4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ jobs:
- name: pnpm install
run: pnpm install

- id: Get version tag
- name: Get version tag
id: git-ver
run: echo "version=$(git describe --tags | sed 's/v//')" >> $env:GITHUB_OUTPUT

- name: Write version info
Expand Down Expand Up @@ -163,7 +164,8 @@ jobs:
- name: pnpm install
run: pnpm install

- id: Get version tag
- name: Get version tag
id: git-ver
run: echo "version=$(git describe --tags | sed "s/v//")" >> $GITHUB_OUTPUT

- name: Write version info
Expand Down

0 comments on commit 32294f4

Please sign in to comment.