Skip to content

Commit

Permalink
run_zip_lambda_workflow_step set to false
Browse files Browse the repository at this point in the history
  • Loading branch information
libracoder committed Dec 3, 2024
1 parent 8723e73 commit 3313d3c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/crossplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,18 @@ jobs:


- name: Build lambdas
if: ${{env.run_zip_lambda_workflow_step == true}}
if: ${{inputs.run_zip_lambda_workflow_step == true}}
run: cd ${{ github.workspace }} && make lambda
env:
run_zip_lambda_workflow_step: ${{ inputs.run_zip_lambda_workflow_step }}
GITHUB_TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }}
GOPRIVATE: "github.com/vimeda/*"

- name: Upload Build Artifacts
if: ${{env.run_zip_lambda_workflow_step == 'true'}}
if: ${{inputs.run_zip_lambda_workflow_step == 'true'}}
uses: actions/upload-artifact@v4
with:
name: srv-lambdas
path: ${{ github.workspace }}/dist/*
env:
run_zip_lambda_workflow_step: ${{ inputs.run_zip_lambda_workflow_step }}

- uses: actions/download-artifact@v4
id: download
Expand Down

0 comments on commit 3313d3c

Please sign in to comment.