Skip to content

Commit

Permalink
TRY-38 add gh release action
Browse files Browse the repository at this point in the history
  • Loading branch information
bircni committed Oct 30, 2023
1 parent f2e85ed commit 45a0b4b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
release:
types: [created]

jobs:
upload-assets:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: taiki-e/[email protected]
with:
bin: raytracing
tar: unix
zip: windows
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 45a0b4b

Please sign in to comment.