Skip to content

Release

Release #21

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'Version to release (SemVer format: x.y.z)'
required: true
type: string
permissions:
contents: write
jobs:
release:
runs-on: macos-14
steps:
- run: sudo xcode-select -s /Applications/Xcode_15.4.app # to generate SPM's XCFrameworks using Swift 5.10
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 1
- name: Configure Git
run: |
git config user.name "Andre Herculano"
git config user.email "[email protected]"
- name: Run release script
id: release
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
chmod +x ./release.sh
./release.sh -v=${{ inputs.version }}
- name: Upload build logs on failure
if: failure() && steps.release.conclusion == 'failure'
uses: actions/upload-artifact@v4
with:
name: build-logs-${{ inputs.version }}
path: |
build/*.log
build/**/*.log
if-no-files-found: warn
retention-days: 5