Skip to content

Instantly share code, notes, and snippets.

@veereshkumarn
Created January 26, 2023 06:52
Show Gist options
  • Save veereshkumarn/8054351c65b3205eae2b53d5452b85f8 to your computer and use it in GitHub Desktop.
Save veereshkumarn/8054351c65b3205eae2b53d5452b85f8 to your computer and use it in GitHub Desktop.
name: PaaS CI Workflow
on:
workflow_dispatch:
jobs:
Build:
name: 'Build'
runs-on: ubuntu-latest
#if: github.ref == 'refs/heads/main'
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest
defaults:
run:
shell: bash
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v2
- name: Build App
uses: ./.github/actions/azure-webapp-build
with:
source-directory: './nopcommerce/Presentation/Nop.Web'
build-platform-name: dotnet
build-platform-version: 6.0
build-output-path: './publish'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment