Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEVOPS-1746 - Update iOS distribution certificate and profiles #3018

Merged
merged 17 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .github/secrets/GoogleService-Info.plist.gpg
Binary file not shown.
Binary file removed .github/secrets/app_fdroid-keystore.jks.gpg
Binary file not shown.
Binary file removed .github/secrets/app_play-keystore.jks.gpg
Binary file not shown.
Binary file removed .github/secrets/app_upload-keystore.jks.gpg
Binary file not shown.
Binary file removed .github/secrets/bitwarden-mobile-key.p12.gpg
Binary file not shown.
Binary file removed .github/secrets/dist_autofill.mobileprovision.gpg
Binary file not shown.
Binary file removed .github/secrets/dist_bitwarden.mobileprovision.gpg
Binary file not shown.
Binary file removed .github/secrets/dist_extension.mobileprovision.gpg
Binary file not shown.
Binary file not shown.
Binary file removed .github/secrets/dist_watch_app.mobileprovision.gpg
Binary file not shown.
Binary file not shown.
3 changes: 0 additions & 3 deletions .github/secrets/google-services.json.gpg

This file was deleted.

Binary file removed .github/secrets/iphone-distribution-cert.p12.gpg
Binary file not shown.
Binary file removed .github/secrets/play_creds.json.gpg
Binary file not shown.
Binary file removed .github/secrets/store_fdroid-keystore.jks.gpg
Binary file not shown.
220 changes: 91 additions & 129 deletions .github/workflows/build.yml

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,14 @@ jobs:
- name: Install Node dependencies
run: npm install

- name: Decrypt secrets
- name: Download secrets
env:
DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }}
ACCOUNT_NAME: bitwardenci
CONTAINER_NAME: mobile
run: |
mkdir -p ~/secrets
gpg --quiet --batch --yes --decrypt --passphrase="$DECRYPT_FILE_PASSWORD" \
--output ./store/fdroid/keystore.jks ./.github/secrets/store_fdroid-keystore.jks.gpg
mkdir -p $HOME/secrets
az storage blob download --account-name $ACCOUNT_NAME --container-name $CONTAINER_NAME \
--name store_fdroid-keystore.jks --file ./store/fdroid/keystore.jks --output none

- name: Compile for F-Droid Store
env:
Expand Down
Loading