Add changelog for 1.1.2 #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Process release dispatch | |
on: | |
push: | |
tags: | |
- '[1-9]+.[0-9]+.[0-9]+-dispatch' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
concurrency: | |
group: ${{ github.ref_name }} | |
jobs: | |
ensure-tag-is-on-main: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
ref: main | |
fetch-depth: 0 | |
- run: exit $(git merge-base --is-ancestor $GITHUB_REF_NAME HEAD) | |
update-xcframeworks-and-dispatch-publishing: | |
runs-on: macos-14-xlarge | |
needs: [ ensure-tag-is-on-main ] | |
permissions: | |
actions: write | |
contents: write | |
steps: | |
- uses: actions/[email protected] | |
- run: | | |
git config --local user.name $GITHUB_ACTOR | |
git config --local user.email [email protected] | |
- run: | | |
set -e | |
TAG=$(echo $GITHUB_REF_NAME | tr -d -- -dispatch) | |
.scripts/github/update_xcframeworks.sh | |
git tag $TAG -m $TAG | |
git push origin tag $TAG | |
gh workflow run publish.yml --ref $TAG |