Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
ci: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
M3DZIK committed Oct 31, 2023
1 parent 1165680 commit 3e0b4b6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/get-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
VERSION_CODE=$(sed -n 's/.*versionCode\s*=\s*\([0-9]\+\).*/\1/p' app/build.gradle.kts)
CHANGELOG=$(cat fastlane/metadata/android/en-US/changelogs/$VERSION_CODE.txt)

echo -n "$CHANGELOG"
echo "$CHANGELOG"
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ jobs:
uses: actions/checkout@v4

- name: Get changelog
run: echo "CHANGELOG=$(./.github/scripts/get-changelog.sh)" >> $GITHUB_ENV
run: |
{
echo 'CHANGELOG<<CHANGELOG_EOF'
echo "$(./.github/scripts/get-changelog.sh)"
echo 'CHANGELOG_EOF'
} >> "$GITHUB_ENV"
- name: Download APK from build
uses: actions/download-artifact@v3
Expand Down
5 changes: 5 additions & 0 deletions t
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CHANGELOG<<EOF
- Fixed padding for keyboard
- Only allows using biometric when it is available
- Allows biometric authentication to be enabled immediately after login
EOF

0 comments on commit 3e0b4b6

Please sign in to comment.