Skip to content

Commit

Permalink
force push soon:tm:
Browse files Browse the repository at this point in the history
  • Loading branch information
validcube committed Jan 22, 2024
1 parent 482bbdc commit 4a6144d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Bump pubspec version
run: |
IFS='.' read -r -a nums <<< "${RELEASE_VERSION/-dev/}.0"
VERSION=$(echo "${RELEASE_VERSION}" | sed 's/^v//')
VERSION=$(echo "${RELEASE_VERSION}" | sed 's/v//')
VERSIONCODE=$((nums[0] * 100000000 + nums[1] * 100000 + nums[2] * 100 + nums[3]))
sed -i "/^version/c\\version: ${{ env.VERSION }}+$VERSIONCODE" pubspec.yaml
Expand Down

0 comments on commit 4a6144d

Please sign in to comment.