Skip to content

Commit e6d71ac

Browse files
committed
Set environment input type back to string
1 parent 49ed511 commit e6d71ac

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/deploy-acc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515
uses: ./.github/workflows/reusable-deploy.yml
1616
with:
17-
environment: acceptance
17+
environment: Acceptance
1818
ref: ref/tags/${{ inputs.version }}
1919
run-job: ${{ startsWith(version, 'v') }}
2020
secrets: inherit

.github/workflows/deploy-prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515
uses: ./.github/workflows/reusable-deploy.yml
1616
with:
17-
environment: production
17+
environment: Production
1818
ref: ref/tags/${{ inputs.version }}
1919
run-job: ${{ startsWith(version, 'v') }}
2020
secrets: inherit

.github/workflows/deploy-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy to test
1+
name: Deploy to Test
22
on:
33
workflow_run:
44
workflows: [CI]
@@ -12,7 +12,7 @@ jobs:
1212
contents: write
1313
uses: ./.github/workflows/reusable-deploy.yml
1414
with:
15-
environment: test
15+
environment: Test
1616
ref: ${{ github.ref }}
1717
run-job: ${{ github.event.workflow_run.conclusion == 'success' }}
1818
secrets: inherit

.github/workflows/reusable-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
inputs:
66
environment:
77
required: true
8-
type: environment
8+
type: string
99
ref:
1010
required: true
1111
type: string

0 commit comments

Comments
 (0)