Skip to content

Commit

Permalink
implement stable deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyd3d committed Oct 14, 2024
1 parent a94b3fd commit 18cc804
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy Stable

on:
workflow_dispatch:
inputs:
RELEASE:
required: true
type: string
description: "The name of the release tag you want to deploy to stable."

env:
ARTIFACT_NAME: hello-world-app

jobs:
Deploy:
name: Deploy 🚀
uses: ./.github/workflows/deploy.yml
with:
namespace: "stable"
image: "kennyd3d/hello-world-app:${{ github.event.inputs.RELEASE }}"
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit 18cc804

Please sign in to comment.