test create release #1
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: Create Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-release: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build Binaries | |
run: | | |
swift build -c release --arch arm64 --arch x86_64 | |
- name: Create and Upload Release | |
uses: softprops/[email protected] | |
with: | |
files: | | |
.build/apple/Products/Release/leakDetect | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |