Skip to content

Deploy CF host debian packages into stable/unstable channel #31

Deploy CF host debian packages into stable/unstable channel

Deploy CF host debian packages into stable/unstable channel #31

name: Update bazel cache and deploy artifacts

Check failure on line 1 in .github/workflows/update-cache-and-deployment.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/update-cache-and-deployment.yaml

Invalid workflow file

Unexpected tag '!inputs.update-cache'
on:
workflow_call:
inputs:
update-cache:
required: true
type: boolean
deploy-channel:
required: false
type: string
secrets:
artifact-registry-uploader-json-creds:
required: false
jobs:
testing:
runs-on: ubuntu-24.04
steps:
- name: Testing
run: |
echo ${{ inputs.update-cache }}
echo ${{ inputs.deploy-channel }}
- name: Testing2
if: inputs.update-cache
run: |
echo ${{ inputs.update-cache }}
echo ${{ inputs.deploy-channel }}
if [ '${{ inputs.update-cache }}' == 'true' ]; then
echo hello
fi
- name: Testing3
if: !inputs.update-cache
run: |
echo ${{ inputs.update-cache }}
echo ${{ inputs.deploy-channel }}
if [ '${{ inputs.update-cache }}' == 'true' ]; then
echo hello
fi