Skip to content

Commit

Permalink
Merge pull request #15 from devops-actions/readme
Browse files Browse the repository at this point in the history
Clarifiy why this repo exists
  • Loading branch information
rajbos committed Jun 1, 2024
2 parents 9692488 + 73cdeb2 commit 83f95c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ jobs:
- name: Check for uncommitted changes
shell: pwsh
run: |
if ((git status --porcelain).Length -ne 0) {
Write-Output "dist folder has changes that are not committed"
if ((git status --porcelain dist).Length -ne 0) {
Write-Output "dist folder has changes that are not committed:"
git status
exit 1
}
else {
Write-Output "dist folder has no changes"
}
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# GitHub Action for configuring Azure App service Settings
> Note: Forked from [Azure/appservice-settings](https://github.com/Azure/appservice-settings) to add support for Node20 runtime which is now [required](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/).and the upstream repo is not repsonding to updates ([issues/44](https://github.com/Azure/appservice-settings/issues/44) and [issues/38](https://github.com/Azure/appservice-settings/issues/38)).
>
> Request issues through the issues in this new repo and I will have a look!
With the Azure App Service Actions for GitHub, you can automate your workflow to deploy [Azure Web Apps](https://azure.microsoft.com/en-us/services/app-service/web/) and configure [App settings](https://docs.microsoft.com/en-us/azure/app-service/configure-common).

Get started today with a [free Azure account](https://azure.com/free/open-source)!

This repository contains GitHub Action for [Azure App Service Settings](https://github.com/Azure/appservice-settings) to configure App settings, connection strings and other general settings in bulk using JSON syntax on your Azure WebApp (Windows or Linux) or any of its deployment slots.
This repository contains GitHub Action for [Azure App Service Settings](https://github.com/devops-actions/appservice-settings) to configure App settings, connection strings and other general settings in bulk using JSON syntax on your Azure WebApp (Windows or Linux) or any of its deployment slots.

The action works for ASP.NET, ASP.NET Core, PHP, Java, Python, Go and Node.js based web applications.

Expand Down Expand Up @@ -134,7 +137,7 @@ jobs:
slot-name: 'staging' # Optional and needed only if the settings have to be configured on the specific deployment slot
app-settings-json: '[{ "name": "SCM_DO_BUILD_DURING_DEPLOYMENT", "value": "1", "slotSetting": false }]'
id: settings
- run: echo "The webapp-url is ${{ steps.settings.outputs.webapp-url }}"
- run: |
az logout
Expand Down

0 comments on commit 83f95c0

Please sign in to comment.