From 31a284853779d1b179c2b8597f3c81c401e5ad1e Mon Sep 17 00:00:00 2001 From: Himanshu Date: Sat, 10 Dec 2022 16:14:29 +0530 Subject: [PATCH] feat: add release workflow --- .github/workflows/release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..1ec27545 --- /dev/null +++ b/.github/workflows/release.yml @@ -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