Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/pr_check_webapp_dotnet_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ jobs:
- name: Installing dependencies and building latest changes
run: |
cd webapps-deploy
npm install
npm run package
if (-NOT(TEST-PATH node_modules))
{
npm install
npm run build
}
- name: Azure authentication
uses: azure/login@v2
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pr_check_windows_container_pubprofile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,11 @@ jobs:
- name: Installing dependencies and building latest changes in action
run: |
cd webapps-deploy
npm install
npm run package
if (-NOT(TEST-PATH node_modules))
{
npm install
npm run build
}

- name: 'Deploy to Azure WebApp'
uses: ./webapps-deploy/
Expand Down
153 changes: 0 additions & 153 deletions .github/workflows/release.yml

This file was deleted.

119 changes: 0 additions & 119 deletions .github/workflows/test-release.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

# Bundled output (built during release)
dist/

# User-specific files
*.suo
*.user
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ branding:
color: 'blue'
runs:
using: 'node20'
main: 'dist/index.js'
main: 'lib/main.js'
Loading
Loading