-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add semantic release * feat: update installation instructions and build steps * feat: remove ios build
- Loading branch information
Showing
5 changed files
with
211 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Always validate the PR title AND all the commits | ||
titleAndCommits: true | ||
# Require at least one commit to be valid | ||
# this is only relevant when using commitsOnly: true or titleAndCommits: true, | ||
# which validate all commits by default | ||
anyCommit: true | ||
# Allow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns") | ||
# this is only relevant when using commitsOnly: true (or titleAndCommits: true) | ||
allowMergeCommits: false | ||
# Allow use of Revert commits (eg on github: "Revert "feat: ride unicorns"") | ||
# this is only relevant when using commitsOnly: true (or titleAndCommits: true) | ||
allowRevertCommits: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Build and Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-apk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
|
||
- name: set up JDK 18 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 18 | ||
distribution: temurin | ||
|
||
- name: Install npm dependencies | ||
run: | | ||
npm install && npx expo prebuild --platform android | ||
- name: Build Android Release | ||
run: | | ||
cd android && ./gradlew assembleRelease | ||
mv app/build/outputs/apk/release/app-release.apk app/build/outputs/apk/release/casdoorapp.apk | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: casdoorapp.apk | ||
path: android/app/build/outputs/apk/release/ | ||
|
||
semantic-release: | ||
needs: [build-apk] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Download Android build artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: casdoorapp.apk | ||
path: release/android/ | ||
|
||
- name: Run semantic-release | ||
run: npm run release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,35 @@ cd casdoor-app | |
npm install && npm run start | ||
``` | ||
|
||
## Installation | ||
|
||
You can download the latest version of the Casdoor Authenticator App from the GitHub Releases page. | ||
|
||
- Android: Download and install the APK file directly on your device. | ||
|
||
### Building from Source | ||
|
||
If you prefer to build the app yourself, follow these steps: | ||
|
||
### Common Steps | ||
|
||
```bash | ||
git clone [email protected]:casdoor/casdoor-app.git | ||
cd casdoor-app | ||
npm install | ||
``` | ||
|
||
### android build | ||
|
||
```bash | ||
npm install && npx expo prebuild --platform android | ||
cd android && ./gradlew assembleRelease | ||
``` | ||
|
||
The APK file in the `app/build/outputs/apk/release/` directory. | ||
|
||
Note: You'll need to have the necessary development environments set up for React Native, Android. Refer to the React Native documentation for detailed setup instructions. | ||
|
||
## Usage | ||
|
||
- Open the app on your mobile device. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters