Skip to content

Commit

Permalink
Creating vercel-release action
Browse files Browse the repository at this point in the history
Will post to vercel webhook to deploy main branch on any tag push
  • Loading branch information
mikosramek authored Feb 13, 2023
1 parent 76b9f5c commit 67315f3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/vercel-release
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
on:
push:
# Pattern matched against refs/tags
tags:
- '*' # Push events to every tag not containing /

jobs:
build:
runs-on: ubuntu-latest
steps:
- run: curl -X POST -d {} https://api.vercel.com/v1/integrations/deploy/prj_1slSjxiFN0PiQ8GvYwdsvOOBFhr5/a58i63nvG9

0 comments on commit 67315f3

Please sign in to comment.