Separate ci and cd tasks

pull/4/head
Maik de Kruif 3 years ago
parent 6592edf2fa
commit a7e1bcf75e
No known key found for this signature in database
GPG Key ID: 50FA6EF181702794
  1. 34
      .github/workflows/hugo_cd.yml
  2. 23
      .github/workflows/hugo_ci.yml

@ -0,0 +1,34 @@
name: Hugo CD
on:
push:
branches:
- "master"
defaults:
run:
working-directory: ./
jobs:
cd:
timeout-minutes: 6
name: CD
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "latest"
extended: true
- name: Build
run: hugo -D -F
- name: Create GitHub deployment
uses: chrnorm/deployment-action@releases/v1
id: deployment
with:
token: "${{ github.token }}"
target_url: https://maik.dev/
environment: production
initial_status: "success"

@ -2,18 +2,23 @@ name: Hugo CI
on:
push:
branches: ["**"]
branches:
- "*"
- "*/*"
- "**"
- "!master"
pull_request:
branches: [master]
branches:
- "master"
defaults:
run:
working-directory: ./
jobs:
compile:
timeout-minutes: 10
name: Compile
ci:
timeout-minutes: 5
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout code
@ -25,11 +30,3 @@ jobs:
extended: true
- name: Build
run: hugo -D -F
- name: Create GitHub deployment
uses: chrnorm/deployment-action@releases/v1
id: deployment
with:
token: "${{ github.token }}"
target_url: https://maik.dev/
environment: production
initial_status: "success"

Loading…
Cancel
Save