-
Notifications
You must be signed in to change notification settings - Fork 12
129 lines (109 loc) · 4.68 KB
/
create_release_pull_request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Create Release Pull Request
on:
pull_request:
types: [opened, reopened, edited, synchronize]
workflow_dispatch:
inputs:
nextVersion:
description: "Next version (eg. 1.0.0)"
required: true
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
create_release_pull_request:
name: Create Release Pull Request
runs-on: macOS-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install SSH key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Install Firebase-Tools
run: |
yarn global add firebase-tools
echo "$(yarn global bin)" >> $GITHUB_PATH
- name: Read Google Service Account
id: firebase_service_account
uses: timheuer/[email protected]
with:
fileName: 'firebase_service_account.json'
encodedString: ${{ secrets.FIREBASE_GOOGLE_APPLICATION_CREDENTIALS_BASE64 }}
- name: Bundle install
run: bundle install
- name: Cache Pods
uses: actions/cache@v3
id: cocoapodCache
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Start Install Script for Template App
run: swift run --package-path Scripts/Swift/iOSTemplateMaker iOSTemplateMaker make --bundle-id-production co.nimblehq.ios.templates --bundle-id-staging co.nimblehq.ios.templates.staging --project-name TemplateApp --interface UIKit
- name: Find HEAD commit
id: head
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Build changelog on "main"
id: changelog
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: ".github/workflows/configs/changelog-config.json"
# Listing PRs from the last tag to the HEAD commit
toTag: ${{ steps.head.outputs.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare variables
run: |
filename=$(find . -maxdepth 1 -name "*.xcodeproj" -exec basename {} .xcodeproj \; | head -n 1)
release_version=$(sed -n 's/.*MARKETING_VERSION *= *\([^;]*\);.*/\1/p' "$filename.xcodeproj/project.pbxproj"
echo "RELEASE_VERSION=$release_version" >> "$GITHUB_ENV"
echo "${{ steps.changelog.outputs.changelog }}" | sed 's/"/\\"/g' > escaped-changelog.txt
- name: Create Release branch
uses: peterjgrainger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: release/${{ env.RELEASE_VERSION }}
- name: Create pull request
run: gh pr create --draft -B main -H release/${{ env.RELEASE_VERSION }} -t 'Release - ${{ env.RELEASE_VERSION }}' -b "$(cat escaped-changelog.txt)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# create_bump_version_pull_request:
# name: Create Bump Version Pull Request
# runs-on: macos-latest
# timeout-minutes: 30
# permissions:
# contents: write
# pull-requests: write
# steps:
# - name: Create Bump Version branch
# uses: peterjgrainger/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# branch: chore/bump-version-to-${{ github.event.inputs.nextVersion }}
# - name: Checkout code
# uses: actions/checkout@v4
# with:
# ref: chore/bump-version-to-${{ github.event.inputs.nextVersion }}
# - name: Bump version
# run: sed -i "" "s/MARKETING_VERSION = .*/MARKETING_VERSION = ${{ github.event.inputs.nextVersion }};/g" {PROJECT_NAME}.xcodeproj/project.pbxproj
# - name: Set up Git
# run: |
# git config --global user.name 'Github Actions'
# git config --global user.email '[email protected]'
# - name: Commit changes
# run: |
# git add .
# git commit -m "[Chore] Bump version to ${{ github.event.inputs.nextVersion }}"
# git push origin HEAD
# - name: Create pull request
# run: |
# echo -e "## What happened 👀\n\nBump version to ${{ github.event.inputs.nextVersion }}" > body
# export body=$(cat body) ; gh pr create --draft -B develop -H chore/bump-version-to-${{ github.event.inputs.nextVersion }} -t '[Chore] Bump version to ${{ github.event.inputs.nextVersion }}' -b "$body"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}