Skip to content

Commit

Permalink
Create github action
Browse files Browse the repository at this point in the history
  • Loading branch information
ALEZ-DEV authored May 28, 2024
1 parent 7c83f0d commit 7eb713f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7eb713f

Please sign in to comment.