Skip to content

Commit

Permalink
chore: add release system
Browse files Browse the repository at this point in the history
  • Loading branch information
nydragon committed May 23, 2024
1 parent a72b4be commit 8fa41fa
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: release

on:
push:
# branches:
#- "main"
tags:
- "*.*.*"

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose
- name: Release
uses: softprops/action-gh-release@v2
with:
files: ./target/release/rofi-obsidian

0 comments on commit 8fa41fa

Please sign in to comment.