Skip to content

Commit

Permalink
feat[spa]: input/output blir ikke brukt i action
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyrremann committed Oct 18, 2024
1 parent 26ae612 commit bd1b6c5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion actions/spa-deploy/v2/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,4 @@ runs:
env:
CLUSTER: ${{ steps.setup.outputs.nais-cluster }}
RESOURCE: ${{ steps.setup.outputs.nais-resource }}
VAR: ${{ steps.setup.outputs.nais-var }}
TEAM: ${{ inputs.team }}
5 changes: 0 additions & 5 deletions actions/spa-setup-task/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ inputs:
app-name:
description: 'Application name'
required: true
source:
description: 'Application source directory'
required: true
ingress:
description: 'Application ingress URL'
required: true
Expand All @@ -23,8 +20,6 @@ outputs:
description: 'NAIS cluster name'
nais-resource:
description: 'NAIS resource files'
nais-vars:
description: 'NAIS variables'
cdn-destination:
description: 'CDN destination'

Expand Down
2 changes: 0 additions & 2 deletions actions/spa-setup-task/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {spaSetupTask, validateInputs} from './spa'
function run(): void {
const teamName: string = core.getInput('team-name')
const appName: string = core.getInput('app-name')
// const source: string = core.getInput('source')
const ingresses: string[] = core.getInput('ingress').split(',')
const ingressClass: string = core.getInput('ingressClass')
const cluster: string = core.getInput('naisCluster')
Expand Down Expand Up @@ -34,7 +33,6 @@ function run(): void {
core.setOutput('cdn-destination', cdnDest)
core.setOutput('nais-cluster', naisCluster)
core.setOutput('nais-resource', naisResources)
core.setOutput('nais-vars', '')
}

run()

0 comments on commit bd1b6c5

Please sign in to comment.