Skip to content

Added: NSLogger and optimize output content #67

Added: NSLogger and optimize output content

Added: NSLogger and optimize output content #67

Workflow file for this run

name: Builder
on:
push:
branches:
- main
env:
CMAKE_VERSION: 3.5
LLVM_VERSION: 15.0.6
jobs:
macos:
runs-on: macos-latest
steps:
- name: checkout main
uses: actions/checkout@master
- name: delete latest release
uses: dev-drprasad/delete-tag-and-release@v0.2.1
with:
delete_release: true
tag_name: latest
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
- name: compile macos
run: |
bash build.sh
shell: bash
- name: print output
run: |
ls -lha .
- name: update release
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.TOKEN }}
tag: latest
body: |
A macOS dylib project based on the Dobby Hook framework, aimed at enhancing and extending the functionality of target software.
## Latest Commit
${{ github.event.head_commit.message }}
artifacts: "dylib_dobby_hook.tar.gz"
allowUpdates: true
replacesArtifacts: true