Skip to content

Commit

Permalink
build: refactor website workflow to trigger netlify deployment (#1199)
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy authored Jun 7, 2024
1 parent 4b00054 commit 10626f7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 48 deletions.
48 changes: 0 additions & 48 deletions .github/workflows/on-tag.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Update Website

on:
push:
tags: 'v*'
workflow_dispatch: # For manually verify

jobs:
redeploy-website:
runs-on: ubuntu-latest
steps:
- name: Redeploy Website
run: curl -X POST -d {} ${{ secrets.NETLIFY_BUILD_HOOK_URL }}

0 comments on commit 10626f7

Please sign in to comment.