101 lines
2.9 KiB
YAML
101 lines
2.9 KiB
YAML
---
|
|
name: github-release
|
|
on:
|
|
push:
|
|
tags:
|
|
- v[0-9]+.[0-9]+.[0-9]+*
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: ci/checkout-repo
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: ci/test
|
|
uses: ./.github/actions/test
|
|
|
|
build-ios-unsigned:
|
|
runs-on: macos-14-large
|
|
needs:
|
|
- test
|
|
steps:
|
|
- name: ci/checkout-repo
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- name: ci/prepare-ios-build
|
|
uses: ./.github/actions/prepare-ios-build
|
|
|
|
- name: ci/output-ssh-private-key
|
|
shell: bash
|
|
run: |
|
|
SSH_KEY_PATH=~/.ssh/id_ed25519
|
|
mkdir -p ~/.ssh
|
|
echo -e '${{ secrets.MM_MOBILE_PRIVATE_DEPLOY_KEY }}' > ${SSH_KEY_PATH}
|
|
chmod 0600 ${SSH_KEY_PATH}
|
|
ssh-keygen -y -f ${SSH_KEY_PATH} > ${SSH_KEY_PATH}.pub
|
|
|
|
- name: ci/build-ios-unsigned
|
|
env:
|
|
TAG: "${{ github.ref_name }}"
|
|
GITHUB_TOKEN: "${{ secrets.MM_MOBILE_GITHUB_TOKEN }}"
|
|
run: bundle exec fastlane ios unsigned
|
|
working-directory: ./fastlane
|
|
|
|
- name: ci/upload-ios-unsigned
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
|
with:
|
|
path: Mattermost-unsigned.ipa
|
|
name: Mattermost-unsigned.ipa
|
|
|
|
build-android-unsigned:
|
|
runs-on: ubuntu-22.04
|
|
needs:
|
|
- test
|
|
steps:
|
|
- name: ci/checkout-repo
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- name: ci/prepare-android-build
|
|
uses: ./.github/actions/prepare-android-build
|
|
with:
|
|
sign: false
|
|
|
|
- name: ci/build-android-beta
|
|
env:
|
|
TAG: "${{ github.ref_name }}"
|
|
GITHUB_TOKEN: "${{ secrets.MM_MOBILE_GITHUB_TOKEN }}"
|
|
run: bundle exec fastlane android unsigned
|
|
working-directory: ./fastlane
|
|
|
|
- name: ci/upload-android-unsigned-build
|
|
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
|
with:
|
|
path: Mattermost-unsigned.apk
|
|
name: Mattermost-unsigned.apk
|
|
|
|
release:
|
|
runs-on: ubuntu-22.04
|
|
needs:
|
|
- build-ios-unsigned
|
|
- build-android-unsigned
|
|
steps:
|
|
- name: ci/checkout-repo
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- uses: ruby/setup-ruby@ff740bc00a01b3a50fffc55a1071b1060eeae9dc # v1.180.0
|
|
|
|
- name: release/setup-fastlane-dependencies
|
|
run: bundle install
|
|
working-directory: ./fastlane
|
|
|
|
- name: ci/download-artifacts
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
|
|
with:
|
|
path: ${{ github.workspace }}
|
|
merge-multiple: true
|
|
|
|
- name: release/create-github-release
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.MM_MOBILE_GITHUB_TOKEN }}"
|
|
run: bundle exec fastlane github
|
|
working-directory: ./fastlane
|