blob: 556ae27f231ba54ecadd3e01aa4f7d849d9b25b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
name: Rebuild page
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Rebuild https://puszcza.netlify.com
uses: wei/curl@v1
with:
args: -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_MASTER }}
- name: Rebuild https://develop--puszcza.netlify.com
uses: wei/curl@v1
with:
args: -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_DEVELOP }}
|