This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Deploy to stable dev #267
Workflow file for this run
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 to stable dev | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
build_mode: | ||
type: choice | ||
required: true | ||
description: 'Build-time NODE_ENV' | ||
default: 'prod' | ||
options: | ||
- prod | ||
- dev | ||
jobs: | ||
deploy: | ||
Check failure on line 15 in .github/workflows/deploy.dev.stable.yml GitHub Actions / Deploy to stable devInvalid workflow file
|
||
permissions: | ||
packages: write | ||
uses: ./.github/workflows/build-and-deploy.yml | ||
with: | ||
NAIS_VARS: .nais/vars/dev-stable.yaml | ||
IMAGE_NAME: dev-stable | ||
CLUSTER: dev-gcp | ||
BUILD_MODE: ${{ inputs.build_mode }} | ||
secrets: inherit |