Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build_only.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Build Only

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches-ignore:
Expand All @@ -10,7 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
uses: wykies/checkout@main
with:
submodules: recursive
- name: Build only
uses: wykies/zola-deploy-action@master
env:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Deploy Prod

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
Expand All @@ -10,7 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
uses: wykies/checkout@main
with:
submodules: recursive
- name: Build and deploy
uses: wykies/zola-deploy-action@master
env:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/deploy_test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Deploy Test

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
branches:
Expand All @@ -10,7 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
uses: wykies/checkout@main
with:
submodules: recursive
- name: Build and deploy
uses: wykies/zola-deploy-action@master
env:
Expand Down
Loading