We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b6a0f2 + ba22e61 commit 37e9e42Copy full SHA for 37e9e42
.github/workflows/build-and-release.yml
@@ -46,6 +46,12 @@ jobs:
46
VERSION=$(echo ${{ steps.create_tag.outputs.new_tag }} | sed 's/^v//')
47
echo "VERSION: $VERSION"
48
49
+
50
+ - name: Update image version in FyneApp.toml
51
+ run: |
52
+ VERSION=$(echo ${{ steps.create_tag.outputs.new_tag }} | sed 's/^v//')
53
+ sed -i "s/Version = \"[0-9]*\.[0-9]*\.[0-9]*\"/Version = \"$VERSION\"/" FyneApp.toml
54
55
- name: Set up Go
56
uses: actions/setup-go@v2
57
with:
0 commit comments