Skip to content

Libre DevOps - Deploy Azure Function App - GitHub Action

Actions
The heavily opinionated Libre DevOps Action to deploy an Azure function app
v1
Latest
Star (1)

Libre DevOps - Azure Terraform GitHub Action

Hello 👋

# action.yml
name: 'Libre DevOps - Deploy Azure Function App -  GitHub Action'
description: 'The heavily opinionated Libre DevOps Action to deploy an Azure function app.'
author: "Craig Thacker <[email protected]>"
branding:
  icon: 'terminal'
  color: 'red'

inputs:
  code-path:
    description: 'The absolute path in Linux format to your code code'
    required: true

  code-client-id:
    description: 'The client id needed for az login'
    required: true

  code-client-secret:
    description: 'The client secret needed for az login'
    required: true

  code-tenant-id:
    description: 'The tenant id needed for az login'
    required: true

  code-app-name:
    description: 'The core function command you want to run'
    required: true

runs:
  using: 'docker'
  image: 'Dockerfile'
  args:
    - ${{ inputs.code-path }}
    - ${{ inputs.code-client-id }}
    - ${{ inputs.code-client-secret }}
    - ${{ inputs.code-tenant-id }}
    - ${{ inputs.code-app-name }}

Libre DevOps - Deploy Azure Function App - GitHub Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

The heavily opinionated Libre DevOps Action to deploy an Azure function app
v1
Latest

Libre DevOps - Deploy Azure Function App - GitHub Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.