-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 787 Bytes
/
Starter.yml
File metadata and controls
36 lines (32 loc) · 787 Bytes
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
name: "Build and Deploy"
env:
name: github-pages
on:
push:
branches:
- main
- master
paths-ignore:
- .gitignore
- README.md
- LICENSE
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
call-workflow-passing-data:
uses: passplease/Chirpy-Template/.github/workflows/Deployer.yml@master
with:
repository: "/passplease.github.io"
send_email: ${{vars.SEND_EMAIL}}
secrets:
email_username: ${{secrets.EMAIL_USERNAME}}
email_password: ${{secrets.EMAIL_PASSWORD}}
email_recipient: ${{secrets.RECIPIENT_EMAIL}}