Skip to content

Main Branch Commit

Main Branch Commit #69

Workflow file for this run

name: Main Branch Commit
on:
push:
branches: [ 'main' ]
schedule:
# At 5:30 am on the 1st and 15th day of the month (every two weeks)
- cron: '30 5 1,15 * *'
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ vars.SLACK_WEBHOOK_URL }}
CURRENT_BUILD_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
RUBY_VERSION: '3.1'
XCODE_VERSION: '15.4'
jobs:
main:
runs-on: macos-14
steps:
# Checkout the repository under $GITHUB_WORKSPACE
- name: Checkout Project
uses: actions/checkout@v4
# Ensure correct Xcode version is installed.
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ env.XCODE_VERSION }}
# Set Ruby version and Cache RubyGem dependencies
- name: Cache RubyGem Dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
# Generate build number
- name: Generate Build Number
uses: onyxmueller/build-tag-number@v1
with:
token: ${{ env.GITHUB_TOKEN }}
# Build & Distribute
- name: Run Fastlane
uses: maierj/[email protected]
with:
lane: 'main'