Create github action

This commit is contained in:
ALEZ 2024-05-28 13:31:46 +02:00 committed by GitHub
parent 7c83f0dbaf
commit 7eb713f279
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

23
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Release
on:
push:
tags:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
release:
strategy:
matrix:
include:
- os: ubuntu-latest
artifact_name: ${{ github.event.repository.name }}
asset_name: ${{ github.event.repository.name }}-linux-amd64
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create release
run: cargo build --release --verbose