Skip to content

Bump appstoreconnect-swift-sdk #24

Bump appstoreconnect-swift-sdk

Bump appstoreconnect-swift-sdk #24

Workflow file for this run

name: Release
on:
push:
tags:
- "*.*.*"
jobs:
release:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- run: sudo xcode-select -s /Applications/Xcode_15.0.app
- name: Build
run: swift build -c release --arch arm64 --arch x86_64 --product xcc
- name: Compress
run: tar -czf ${{ github.ref_name }}.tar.gz -C .build/apple/Products/Release xcc
- name: Release
run: gh release create ${{ github.ref_name }} ${{ github.ref_name }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
homebrew:
needs: release
name: Bump Homebrew formula
runs-on: ubuntu-latest
environment: Env
steps:
- uses: mislav/bump-homebrew-formula-action@v3
with:
homebrew-tap: finnvoor/homebrew-tools
download-url: https://github.com/finnvoor/xcc/releases/download/${{ github.ref_name }}/${{ github.ref_name }}.tar.gz
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}