Skip to content

Commit

Permalink
Test release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed Oct 17, 2023
1 parent b842f5b commit 63641ad
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:
- "v*"

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
target/release/rfd-api
target/release/rfd-cli
target/release/rfd-processor
target/release/rfd-redirect

0 comments on commit 63641ad

Please sign in to comment.