Skip to content

Commit 2204c71

Browse files
committed
reverted unnecessary chabges
1 parent ac91ca8 commit 2204c71

File tree

3 files changed

+1
-23
lines changed

3 files changed

+1
-23
lines changed

.github/workflows/auto-generate-go-packages.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -188,28 +188,6 @@ jobs:
188188
echo "branch=$REF_NAME" >> $GITHUB_OUTPUT
189189
fi
190190
191-
- name: Update package version
192-
if: steps.check-changes.outputs.has_changes == 'true'
193-
env:
194-
PACKAGE_DIR: ${{ steps.package-config.outputs.package_dir }}
195-
VERSION: ${{ steps.version.outputs.version }}
196-
IS_BETA: ${{ steps.version.outputs.is_beta }}
197-
run: |
198-
GO_MOD_FILE="i18nify-data/go/$PACKAGE_DIR/go.mod"
199-
200-
if [ -f "$GO_MOD_FILE" ]; then
201-
# Add version comment to go.mod
202-
if [ "$IS_BETA" = "true" ]; then
203-
echo "// Beta version: v$VERSION" > "${GO_MOD_FILE}.tmp"
204-
else
205-
echo "// Release version: v$VERSION" > "${GO_MOD_FILE}.tmp"
206-
fi
207-
cat "$GO_MOD_FILE" >> "${GO_MOD_FILE}.tmp"
208-
mv "${GO_MOD_FILE}.tmp" "$GO_MOD_FILE"
209-
210-
echo "Updated go.mod with version: v$VERSION"
211-
fi
212-
213191
- name: Commit and push changes (Beta)
214192
if: steps.check-changes.outputs.has_changes == 'true' && steps.version.outputs.is_beta == 'true'
215193
env:

i18nify-data/currency/data.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
"symbol": "EC$",
9595
"physical_currency_denominations": [
9696

97+
"2",
9798
"5",
9899
"10",
99100
"20",

i18nify-data/go/currency/go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Beta version: v0.0.1-beta.pr593
21
module github.com/razorpay/i18nify/i18nify-data/go/currency
32

43
go 1.20

0 commit comments

Comments
 (0)