Skip to content

Commit 06e8dff

Browse files
authored
Merge pull request #36 from KiraCore/feature/cidi
fix: add debug for tag. change output path
2 parents ba47e03 + cb0ae5e commit 06e8dff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: .github/workflows/build-and-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,12 @@ jobs:
187187
uses: actions/checkout@v4
188188
- name: Print the new tags
189189
run: |
190-
echo "TAG: ${{ steps.build-and-ver.create_tag.outputs.new_tag }}"
191-
VERSION=$(echo ${{ steps.create_tag.outputs.new_tag }} | sed 's/^v//')
190+
echo "TAG: ${{ needs.build-and-ver.outputs.new_version }}"
191+
VERSION=$(echo ${{ needs.build-and-ver.outputs.new_version }} | sed 's/^v//')
192192
echo "VERSION: $VERSION"
193193
- name: Update image version in FyneApp.toml
194194
run: |
195-
VERSION=$(echo ${{ steps.build-and-ver.create_tag.outputs.new_tag }} | sed 's/^v//')
195+
VERSION=$(echo ${{ needs.build-and-ver.outputs.new_version }} | sed 's/^v//')
196196
sed -i "s/Version = \"[0-9]*\.[0-9]*\.[0-9]*\"/Version = \"$VERSION\"/" FyneApp.toml
197197
198198
- name: Commit and push updated FyneApp.toml

0 commit comments

Comments
 (0)