-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (35 loc) · 854 Bytes
/
dev.yaml
File metadata and controls
35 lines (35 loc) · 854 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
name: Dev
on:
pull_request:
types: [synchronize, opened]
paths:
- docs/**
- .github/workflows/dev.yaml
- overrides/**
- mkdocs.yml
- dev-robots.txt
- .htpasswd
- dev.Dockerfile
- cloudflare.conf
- deny.conf
- dev-nginx.conf
- dev.toml
jobs:
site:
runs-on: ubuntu-latest
name: Build Documentation
environment:
name: Development
url: https://dev-documentation.breadnet.co.uk
concurrency:
group: dev
cancel-in-progress: true
steps:
- name: Git Clone
uses: actions/checkout@v6
- name: Fly Build and Deploy
uses: userbradley/actions-fly@v1.1.0
with:
flyToken: ${{ secrets.FLY_ACCESS_TOKEN_DEV }}
configFile: ${{ vars.CONFIG_FILE }}
dockerfileName: ${{ vars.DOCKERFILE }}