-
-
Notifications
You must be signed in to change notification settings - Fork 405
21 lines (19 loc) · 602 Bytes
/
deploy.yml
File metadata and controls
21 lines (19 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Deploy Code to Release Branch 🚀
on:
workflow_dispatch:
jobs:
build:
name: Push to Release Branch
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
# Workflow dispatch event that pushes the current version to the release branch.
# From here the secondary production deployment workflow will trigger to build the dependencies.
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: releases/v4
folder: .
clean: false
single-commit: true