Skip to content

Commit

Permalink
test create release
Browse files Browse the repository at this point in the history
  • Loading branch information
yume190 committed Aug 29, 2023
1 parent e7b6e32 commit 2890c17
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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 }}

0 comments on commit 2890c17

Please sign in to comment.