mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 07:42:19 +00:00
* ci: (nightly) bump TransformerKit to fix compile Fixes build issue with Xcode 15 by raising minimum deployment target to 10.13 * ci: (nightly) bump dependencies to latest versions This ensures the build no longer fails with error code 65 * ci: (nightly) use github_token for carthage rate limit If we don't use the token the build can sometimes fail as it is rate limited, this ensures we can build more with less restrictions. * ci: (nightly) add empty sign identity * ci: (nightly) add code sign entitlements flag * build: make copyfiles first task to fix build cycle * ci: (nightly) bump gh action checkout to v4 * ci: (nightly) format github actions yaml * ci: (nightly) bump agent to use macos-latest * ci: (nightly) bump gh-release action to v2 * ci: fix algorithm name in hash
79 lines
3.0 KiB
YAML
79 lines
3.0 KiB
YAML
name: Nightly
|
|
|
|
on:
|
|
#push:
|
|
# branches: [ master ]
|
|
#pull_request:
|
|
# branches: [ master ]
|
|
schedule:
|
|
- cron: "0 23 * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nightly:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Bootstrap Carthage
|
|
env:
|
|
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: carthage bootstrap --platform macOS
|
|
|
|
- name: Install xcpretty
|
|
run: gem install xcpretty --no-document --quiet
|
|
|
|
- name: Build
|
|
run: |
|
|
set -o pipefail
|
|
xcodebuild clean
|
|
xcodebuild build -configuration release -project MacPass.xcodeproj -scheme MacPass CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" -derivedDataPath ./build | xcpretty -c
|
|
|
|
- name: Export Localizations
|
|
run: |
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage de
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage en
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage es
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage fr
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage it
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage nl
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage ru
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage sv-SE
|
|
xcodebuild -project MacPass.xcodeproj -exportLocalizations -localizationPath Localisations -exportLanguage zh-Hans
|
|
|
|
- name: Zip Localizations
|
|
run: zip -9ry Localisations.zip Localisations
|
|
|
|
- name: Package Release
|
|
run: |
|
|
cd ./build/Build/Products/Release
|
|
zip -9ry MacPass-continuous.zip MacPass.app
|
|
|
|
- name: Create SHA256 Hash
|
|
run: |
|
|
cd ./build/Build/Products/Release
|
|
shasum -a 256 MacPass-continuous.zip > MacPass-continuous.zip.sha256
|
|
|
|
#- name: Release
|
|
# uses: eine/tip@master
|
|
# with:
|
|
# token: ${{ secrets.GITHUB_TOKEN }}
|
|
# tag: continuous
|
|
# files: |
|
|
# Localisations.zip
|
|
# ./build/Build/Products/Release/MacPass-continuous.zip
|
|
# ./build/Build/Products/Release/MacPass-continuous.zip.sha256
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
tag_name: continuous
|
|
files: |
|
|
Localisations.zip
|
|
./build/Build/Products/Release/MacPass-continuous.zip
|
|
./build/Build/Products/Release/MacPass-continuous.zip.sha256 |