Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Candidate v0.0 #3

Merged
merged 12 commits into from
Feb 10, 2025
Merged
5 changes: 5 additions & 0 deletions .github/workflows/build-rc.yml
Original file line number Diff line number Diff line change
@@ -62,6 +62,11 @@ jobs:
EAS_PROJECT_URL: ${{ vars.EAS_PROJECT_URL }}
run: |
build_id=$( eas build --platform android --profile release-candidate --json --non-interactive --no-wait | jq '.[0].id' --raw-output )
if [ -z "$build_id" ]; then
echo "Unable to get build ID"
exit 1
fi
echo "Build ID: $build_id"
eas_build_url="$EAS_PROJECT_URL/builds/$build_id"
echo "eas_build_url=$eas_build_url" >> $GITHUB_OUTPUT
34 changes: 34 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -40,6 +40,11 @@ jobs:
EAS_PROJECT_URL: ${{ vars.EAS_PROJECT_URL }}
run: |
build_id=$( eas build --platform android --profile production --json --non-interactive --no-wait | jq '.[0].id' --raw-output )
if [ -z "$build_id" ]; then
echo "Unable to get build ID"
exit 1
fi
echo "Build ID: $build_id"
eas_build_url="$EAS_PROJECT_URL/builds/$build_id"
echo "eas_build_url=$eas_build_url" >> $GITHUB_OUTPUT
@@ -65,3 +70,32 @@ jobs:
run: |
gh pr comment $PR_NUMBER --body "$COMMENT_BODY" --repo "$GITHUB_REPOSITORY"
tag:
name: Create release tag
runs-on: ubuntu-latest
needs: build

steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.RELEASE_BOT_APP_ID }}
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}

- name: Parse version
id: version
uses: ./.github/parse-version

- name: Tag release
run: |
git config --global user.name 'awana-release-bot[bot]'
git config --global user.email '${{ vars.RELEASE_BOT_USER_ID }}+awana-release-bot[bot]@users.noreply.github.com'
git tag v${{ steps.version.outputs.releaseShort }}
git push origin v${{ steps.version.outputs.releaseShort }}
84 changes: 84 additions & 0 deletions .github/workflows/check-pr-to-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Check PR to Release

on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- 'release/**'

jobs:
check_release_branch:
name: No Commits
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Fetch base branch
run: |
git fetch origin ${{ github.event.pull_request.base.ref }}
- name: Check base branch has no commits since merge base
env:
BASE_BRANCH_HEAD_SHA: ${{ github.event.pull_request.base.sha }}
PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
run: |
set -x
MERGE_BASE=$(git merge-base $PR_HEAD_SHA $BASE_BRANCH_HEAD_SHA)
echo $MERGE_BASE
echo $BASE_BRANCH_HEAD_SHA
if [ $MERGE_BASE != $BASE_BRANCH_HEAD_SHA ]; then
echo "Base branch has commits since merge base"
exit 1
fi
check_source_branch:
name: Check source branch
runs-on: ubuntu-latest

steps:
- name: Assert source branch is RC branch
if: ${{ !startsWith(github.head_ref, 'rc/') }}
run: exit 1

check_release_version:
name: Check release version
needs: check_source_branch
runs-on: ubuntu-latest

steps:
- name: Checkout necessary files
uses: actions/checkout@v4
with:
sparse-checkout: |
package.json
.github/parse-version/action.yml
sparse-checkout-cone-mode: false

- run: npm install --no-save semver
shell: bash

# parse-version action doesn't exactly do what we want
- name: Extract versions
id: version
run: |
full=$(cat package.json | jq '.version' --raw-output)
echo "release_version=$full" >> $GITHUB_OUTPUT
short=$(node -e "const {version} = require('./package.json'); const semver = require('semver'); const parsed = semver.parse(version); console.log(parsed.minor + '.' + parsed.patch);")
echo "release_version_short=$short" >> $GITHUB_OUTPUT
- name: Assert release version is not pre-release
if: endsWith(steps.version.outputs.release_version, '-pre')
run: exit 1

- name: Assert release version matches RC branch name
if: format('rc/v{0}', steps.version.outputs.release_version_short) != github.head_ref
run: exit 1
40 changes: 0 additions & 40 deletions .github/workflows/check-release-branch.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [develop, 'rc/**']
branches: [develop]
pull_request:
# By default, a workflow only runs when a pull_request's activity type is
# opened, synchronize, or reopened. Adding ready_for_review here ensures
96 changes: 51 additions & 45 deletions package-lock.json
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "release-automations-example",
"version": "1.0.0-pre",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
@@ -12,11 +12,11 @@
"prepare": "husky"
},
"dependencies": {
"expo": "52.0.28",
"expo": "52.0.30",
"expo-application": "6.0.2",
"expo-dev-client": "5.0.11",
"expo-status-bar": "2.0.1",
"expo-updates": "0.26.15",
"expo-updates": "0.26.16",
"react": "18.3.1",
"react-native": "0.76.6"
},