github-pages-deploy-action/.github/workflows/deploy.yml

22 lines
593 B
YAML
Raw Normal View History

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@v4
2021-02-08 22:44:51 +08:00
# 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 🚀
2022-06-26 20:57:54 +08:00
uses: JamesIves/github-pages-deploy-action@v4
with:
2021-02-08 22:44:51 +08:00
branch: releases/v4
2021-02-08 22:23:04 +08:00
folder: .
clean: false
single-commit: true