Deploy Code to Release Branch π #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# 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 |