-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (30 loc) · 1.02 KB
/
deploy-master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Build and Deploy
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Build
run: |
npm install
npm run build
- name: Get commit short hash
id: vars
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Post request
env:
API_WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
if: ${{ env.API_WEBHOOK_URL != '' && env.API_WEBHOOK_URL != null }}
run: |
curl -s -X POST -k ${{ secrets.WEBHOOK_URL }}?TAG=${{ steps.vars.outputs.sha_short }} \
-H 'sudo-token: ${{ secrets.API_SUDO_TOKEN }}'