Skip to content

Commit

Permalink
fix(CICD): fix CICD workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
azarz committed Nov 28, 2023
1 parent 1868716 commit ab54095
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/android-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
directory: .
file_name: .env
envkey_GP_TOKEN: ${{ secrets.GP_TOKEN }}
envkey_GPF_key: ${{ secrets.GPF_key }}
fail_on_empty: false

- name: Get the tagname
Expand All @@ -34,6 +34,12 @@ jobs:
- name: Install app dependencies
run: npm install

- name: Build
run: npm run build

- name: Sync
run: npx cap sync

- name: Build Android Release APK
run: cd android && ./gradlew assembleRelease

Expand Down
24 changes: 13 additions & 11 deletions .github/workflows/ios-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,16 @@ on:
- '**'

jobs:
build_with_signing:
deploy:
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Make envfile
uses: SpicyPizza/create-envfile@v1.3
with:
directory: .
file_name: .env
envkey_GP_TOKEN: ${{ secrets.GP_TOKEN }}
fail_on_empty: false
run: |
echo "GPF_key=${{ secrets.GPF_key }}" > .env
- name: Get the tagname
id: get_tagname
Expand All @@ -34,6 +30,12 @@ jobs:
- name: Install app dependencies
run: npm install

- name: Build
run: npm run build

- name: Sync
run: npx cap sync

- name: Install the Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
Expand Down Expand Up @@ -63,14 +65,14 @@ jobs:
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
- name: Build app
run: xcodebuild -scheme "IGNProduction" clean archive -archivePath "ign" -configuration "Release Production"
run: cd ios/App && xcodebuild -scheme "App" clean archive -archivePath "ign" -configuration "Release Production"
- name: export ipa
env:
EXPORT_PLIST: ${{ secrets.IOS_EXPORT_PRODUCTION }}
run: |
EXPORT_PLINST_PATH=$RUNNER_TEMP/ExportOptions.plist
echo -n "$EXPORT_PLIST" | base64 --decode --output $EXPORT_PLIST_PATH
xcodebuild -exportArchive -archivePath $GITHUB_WORKSPACE/ign.xcarchive -exportOptionsPlist $EXPORT_PLIST_PATH -exportPath $RUNNER_TEMP/export
cd ios/App && xcodebuild -exportArchive -archivePath $GITHUB_WORKSPACE/ign.xcarchive -exportOptionsPlist $EXPORT_PLIST_PATH -exportPath $RUNNER_TEMP/export
- name: Decode auth api key file and save it
env:
Expand All @@ -85,5 +87,5 @@ jobs:
run: |
echo "Starting upload"
ls ~/private_keys
xcrun altool — validate-app -f $RUNNER_TEMP/export/IGNProduction.ipa -t ios — apiKey ${{ secrets.APPSTORE_API_KEY_ID }} — apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }}
xcrun altool — upload-app -f $RUNNER_TEMP/export/IGNProduction.ipa -t ios — apiKey “${{ secrets.APPSTORE_API_KEY_ID }}” — apiIssuer “${{ secrets.APPSTORE_ISSUER_ID }}”
cd ios/App && xcrun altool — validate-app -f $RUNNER_TEMP/export/App.ipa -t ios — apiKey ${{ secrets.APPSTORE_API_KEY_ID }} — apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }}
cd ios/App && xcrun altool — upload-app -f $RUNNER_TEMP/export/App.ipa -t ios — apiKey “${{ secrets.APPSTORE_API_KEY_ID }}” — apiIssuer “${{ secrets.APPSTORE_ISSUER_ID }}”
8 changes: 8 additions & 0 deletions .github/workflows/web-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
- name: Checkout source
uses: actions/checkout@v3

- name: Make envfile
uses: SpicyPizza/create-envfile@v1.3
with:
directory: .
file_name: .env
envkey_GPF_key: ${{ secrets.GPF_key }}
fail_on_empty: false

- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit ab54095

Please sign in to comment.