-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- improve: ci versioning for visor (#162)
- Loading branch information
1 parent
a9bac30
commit fa7a0a2
Showing
6 changed files
with
85 additions
and
82 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 |
---|---|---|
|
@@ -38,10 +38,14 @@ jobs: | |
npm cache verify | ||
npm ci --no-audit --prefer-offline | ||
- name: get-npm-version | ||
id: package-version | ||
uses: martinbeentjes/[email protected] | ||
|
||
- name: Run NX build on shinkai-visor | ||
run: npx nx build shinkai-visor --skip-nx-cache | ||
env: | ||
VERSION: 0.0.0.${{github.run_number}} | ||
VERSION: ${{ steps.package-version.outputs.current-version}}.${{github.run_number}} | ||
NAME_PREFIX: '[Dev]' | ||
DESCRIPTION_PREFIX: '[Dev]' | ||
|
||
|
@@ -66,68 +70,69 @@ jobs: | |
if-no-files-found: error | ||
retention-days: 5 | ||
|
||
release-shinkai-app-android: | ||
runs-on: ubuntu-latest | ||
environment: development | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use nx set shas | ||
uses: nrwl/nx-set-shas@v3 | ||
|
||
- name: Setup Node version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
check-latest: false | ||
registry-url: https://registry.npmjs.org | ||
cache: 'npm' | ||
cache-dependency-path: package-lock.json | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm cache verify | ||
npm ci --no-audit --prefer-offline | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Set mobile apps version | ||
run: | | ||
npx capacitor-set-version -v $VERSION -b $BUILD $APP_PATH | ||
env: | ||
VERSION: 0.0.0 | ||
BUILD: ${{ github.run_number }} | ||
APP_PATH: ./apps/shinkai-app | ||
|
||
- name: Mount shinkai android keystore from secret | ||
run: | | ||
echo $KEYSTORE_BASE_64_STRING > $KEYSTORE_BASE_64_FILE_NAME | ||
base64 -d $KEYSTORE_BASE_64_FILE_NAME > $KEYSTORE_FILE_PATH | ||
env: | ||
KEYSTORE_BASE_64_STRING: ${{ secrets.ANDROID_KEYSTORE_BASE_64 }} | ||
KEYSTORE_BASE_64_FILE_NAME: shinkai-keystore-android-upload-base-64 | ||
KEYSTORE_FILE_PATH: ./apps/shinkai-app/android/shinkai-keystore-android | ||
|
||
- name: Run NX build on shinkai-app-android | ||
run: | | ||
npx nx build:android shinkai-app | ||
env: | ||
ANDROID_KEYSTORE_FILE_PATH: shinkai-keystore-android | ||
ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }} | ||
ANDROID_KEYSTORE_ALIAS: ${{ secrets.ANDROID_KEYSTORE_ALIAS }} | ||
ANDROID_KEYSTORE_ALIAS_PASS: ${{ secrets.ANDROID_KEYSTORE_ALIAS_PASS }} | ||
|
||
- name: Upload signed android .AAB file to Google Play Store | ||
uses: r0adkll/upload-google-play@v1 | ||
with: | ||
serviceAccountJsonPlainText: ${{ secrets.ANDROID_SERVICE_ACCOUNT_JSON }} | ||
packageName: com.shinkai.app | ||
releaseFiles: ./dist/apps/shinkai-app-android/app-release-signed.aab | ||
track: internal | ||
status: draft | ||
# At the moment we are not releasing android (CI was working) | ||
# release-shinkai-app-android: | ||
# runs-on: ubuntu-latest | ||
# environment: development | ||
# steps: | ||
# - name: Check out repository | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 0 | ||
|
||
# - name: Use nx set shas | ||
# uses: nrwl/nx-set-shas@v3 | ||
|
||
# - name: Setup Node version | ||
# uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 18 | ||
# check-latest: false | ||
# registry-url: https://registry.npmjs.org | ||
# cache: 'npm' | ||
# cache-dependency-path: package-lock.json | ||
|
||
# - name: Install dependencies | ||
# run: | | ||
# npm cache verify | ||
# npm ci --no-audit --prefer-offline | ||
|
||
# - uses: actions/setup-java@v3 | ||
# with: | ||
# java-version: '17' | ||
# distribution: 'temurin' | ||
|
||
# - name: Set mobile apps version | ||
# run: | | ||
# npx capacitor-set-version -v $VERSION -b $BUILD $APP_PATH | ||
# env: | ||
# VERSION: 0.0.0 | ||
# BUILD: ${{ github.run_number }} | ||
# APP_PATH: ./apps/shinkai-app | ||
|
||
# - name: Mount shinkai android keystore from secret | ||
# run: | | ||
# echo $KEYSTORE_BASE_64_STRING > $KEYSTORE_BASE_64_FILE_NAME | ||
# base64 -d $KEYSTORE_BASE_64_FILE_NAME > $KEYSTORE_FILE_PATH | ||
# env: | ||
# KEYSTORE_BASE_64_STRING: ${{ secrets.ANDROID_KEYSTORE_BASE_64 }} | ||
# KEYSTORE_BASE_64_FILE_NAME: shinkai-keystore-android-upload-base-64 | ||
# KEYSTORE_FILE_PATH: ./apps/shinkai-app/android/shinkai-keystore-android | ||
|
||
# - name: Run NX build on shinkai-app-android | ||
# run: | | ||
# npx nx build:android shinkai-app | ||
# env: | ||
# ANDROID_KEYSTORE_FILE_PATH: shinkai-keystore-android | ||
# ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }} | ||
# ANDROID_KEYSTORE_ALIAS: ${{ secrets.ANDROID_KEYSTORE_ALIAS }} | ||
# ANDROID_KEYSTORE_ALIAS_PASS: ${{ secrets.ANDROID_KEYSTORE_ALIAS_PASS }} | ||
|
||
# - name: Upload signed android .AAB file to Google Play Store | ||
# uses: r0adkll/upload-google-play@v1 | ||
# with: | ||
# serviceAccountJsonPlainText: ${{ secrets.ANDROID_SERVICE_ACCOUNT_JSON }} | ||
# packageName: com.shinkai.app | ||
# releaseFiles: ./dist/apps/shinkai-app-android/app-release-signed.aab | ||
# track: internal | ||
# status: draft |
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 |
---|---|---|
|
@@ -28,6 +28,17 @@ jobs: | |
cache: 'npm' | ||
cache-dependency-path: package-lock.json | ||
|
||
- name: get-npm-version | ||
id: package-version | ||
uses: martinbeentjes/[email protected] | ||
|
||
- name: Check version match | ||
if: ${{ github.ref_name }} != ${{ steps.package-version.outputs.current-version }} | ||
uses: actions/github-script@v3 | ||
with: | ||
script: | | ||
core.setFailed('Version mismatch') | ||
- name: Install dependencies | ||
run: | | ||
npm cache verify | ||
|
@@ -36,7 +47,7 @@ jobs: | |
- name: Run NX build on shinkai-visor | ||
run: npx nx build shinkai-visor --skip-nx-cache | ||
env: | ||
VERSION: ${{ github.ref_name }}.${{github.run_number}} | ||
VERSION: ${{ steps.package-version.outputs.current-version }}.${{github.run_number}} | ||
NAME_PREFIX: '' | ||
DESCRIPTION_PREFIX: '' | ||
PUBLIC_KEY: ${{ secrets.CHROME_EXTENSION_PUBLIC_KEY }} | ||
|
This file was deleted.
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
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