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 cf48f26
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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 cf48f26

Please sign in to comment.