Skip to content

Commit

Permalink
Try out release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
afishhh committed Jan 30, 2024
1 parent 0ff92e1 commit 1fc53e2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

permissions:
contents: write

on:
release:
types: [created]

jobs:
upload-assets:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup default nightly
shell: bash
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: ftlman
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1fc53e2

Please sign in to comment.