Skip to content

Commit

Permalink
feat: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostx31 committed Dec 10, 2022
1 parent a5eb708 commit 31a2848
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Cursor release"

on:
push:
tags:
- "*"

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: List files
run: ls -la cursors/
- name: Add zips to release
uses: softprops/action-gh-release@v1
with:
files: ./cursors/*.zip

0 comments on commit 31a2848

Please sign in to comment.