fix: fix table outline frame calculations; removed conditional render… #13
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: Publish Release | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "Tag to release" | |
required: true | |
jobs: | |
release: | |
name: Publish Release | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Install Dependencies | |
run: brew install tree | |
- name: Create XCFramework | |
run: ./scripts/create-xcframework.sh | |
- name: Create GitHub Release | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
automatic_release_tag: ${{ github.event.inputs.tag }} | |
title: ${{ github.event.inputs.tag }} | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
files: | | |
archives/TPPDF.zip | |
archives/TPPDF.sha256 |