Skip to content

Commit

Permalink
Tweak CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmmr committed Feb 3, 2024
1 parent a7486dd commit e24f622
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 5 deletions.
43 changes: 41 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,53 @@ name: CI pipeline
on: push

jobs:
build:
debug:
runs-on: macos-14

steps:
- uses: actions/checkout@v3

- name: Build code
run: make debug

release:
runs-on: macos-14
environment: release-macos

steps:
- uses: actions/checkout@v3

- name: Install the Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
P12_PASSWORD: ${{ secrets.P12_PASSWORD }}
BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
run: |
# create variables
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate profile from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
# import certificate to keychain
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security list-keychain -d user -s $KEYCHAIN_PATH
- name: Build code
run: make release

- name: Run check
run: make check
run: make check-release

- name: Clean up keychain
if: ${{ always() }}
run: |
security delete-keychain $RUNNER_TEMP/app-signing.keychain-db
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.1-4 | 2024-01-21 07:57:15 +0100

* Tweak CI.

0.1-3 | 2024-01-20 22:29:20 +0100

* Polish code infrastructure.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ debug:
release:
@xcodebuild -quiet -target qlview-signed -configuration Release

check:
check-release:
codesign --verify --verbose build/Release/qlview
codesign --display --verbose=4 build/Release/qlview 2>&1 | grep Signed
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1-3
0.1-4
2 changes: 1 addition & 1 deletion qlview/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<key>CFBundleName</key>
<string>qlview</string>
<key>CFBundleVersion</key>
<string>0.1-3</string>
<string>0.1-4</string>
</dict>
</plist>

0 comments on commit e24f622

Please sign in to comment.