Skip to content

felipementel is testing out Azure WebApp GitHub Actions πŸš€ #6

felipementel is testing out Azure WebApp GitHub Actions πŸš€

felipementel is testing out Azure WebApp GitHub Actions πŸš€ #6

Workflow file for this run

name: Web App CI/CD
run-name: ${{ github.actor }} is testing out Azure WebApp GitHub Actions πŸš€
on:
push:
branches:
- main
- '!feature/**'
paths:
- 'src/AzureWebApp/**'
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
pull_request:
branches:
- main
- '!feature/**'
paths:
- 'src/AzureWebApp/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['7.0.x', '8.0.x']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
steps:
- run: echo "Azure Web App - $GITHUB_WORKSPACE"