ios #651
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
# File generated by `go run ./internal/cmd/ghgen`; DO NOT EDIT. | |
name: ios | |
on: | |
push: | |
branches: | |
- "release/**" | |
- "fullbuild" | |
- "iosbuild" | |
tags: | |
- "v*" | |
schedule: | |
- cron: "17 1 * * *" | |
jobs: | |
build_ios_mobile: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get GOVERSION content | |
id: goversion | |
run: echo "version=$(cat GOVERSION)" >> "$GITHUB_OUTPUT" | |
- uses: magnetikonline/action-golang-cache@v4 | |
with: | |
go-version: "${{ steps.goversion.outputs.version }}" | |
cache-key-suffix: "-ios-${{ steps.goversion.outputs.version }}" | |
- run: | | |
echo -n $PSIPHON_CONFIG_KEY > ./internal/engine/psiphon-config.key | |
echo $PSIPHON_CONFIG_JSON_AGE_BASE64 | base64 -d > ./internal/engine/psiphon-config.json.age | |
env: | |
PSIPHON_CONFIG_KEY: ${{ secrets.PSIPHON_CONFIG_KEY }} | |
PSIPHON_CONFIG_JSON_AGE_BASE64: ${{ secrets.PSIPHON_CONFIG_JSON_AGE_BASE64 }} | |
- run: make EXPECTED_XCODE_VERSION=14.2 MOBILE/ios | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: oonimkall.xcframework.zip | |
path: ./MOBILE/ios/oonimkall.xcframework.zip | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: oonimkall.podspec | |
path: ./MOBILE/ios/oonimkall.podspec | |
publish_ios_mobile: | |
runs-on: ubuntu-22.04 | |
needs: build_ios_mobile | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: oonimkall.xcframework.zip | |
- uses: actions/download-artifact@v3 | |
with: | |
name: oonimkall.podspec | |
- run: ./script/ghpublish.bash oonimkall.xcframework.zip oonimkall.podspec | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# End of autogenerated file |