Adds release action

This commit is contained in:
zomars 2022-11-08 13:32:05 -07:00
parent 4803c956dc
commit 97b99deb5d

11
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,11 @@
on:
push:
# Pattern matched against refs/tags
tags:
- "*" # Push events to every tag not containing /
jobs:
release:
runs-on: ubuntu-latest
steps:
- run: curl -X POST -d {} ${{ secrets.VERCEL_VERSIONED_DEPLOY_HOOK }}