Skip to content

Deploying 1.0.0 to frontend #17

Deploying 1.0.0 to frontend

Deploying 1.0.0 to frontend #17

Workflow file for this run

name: Progressive Delivery - Canary Release
run-name: Deploying ${{inputs.version}} to ${{inputs.service}}
on:
workflow_dispatch:
inputs:
service:
description: 'Service being deployed'
required: true
version:
description: 'Version being deployed'
required: true
jobs:
run-e2e-tests:
runs-on: ubuntu-latest
name: Run E2E Tests
steps:
- name: Say that you are testing
run: echo "Testing ${{inputs.service}} ${{inputs.version}} ...!"
- name: Say that testing is done
run: echo "Completed ${{inputs.service}} ${{inputs.version}}..."