Skip to content

Commit

Permalink
Update deploy-web.yml to add web deployment option
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdji committed Nov 14, 2024
1 parent 6f55eac commit 7f6ef03
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ name: Release
on:
workflow_dispatch:
inputs:
client:
type: boolean
description: "Deploy Web"
default: true
web:
type: boolean
description: "Deploy Web"
default: false
pre_release:
type: boolean
description: "Pre-release"
Expand All @@ -15,15 +23,12 @@ on:
# - major
- patch
default: patch
web:
type: boolean
description: "Deploy Web"
default: false

jobs:
release_client:
name: Build and Release Client
runs-on: macOS
if: ${{ github.event.inputs.client }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 7f6ef03

Please sign in to comment.