Skip to content

1k-off/iis-apppool-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

IIS Application pool action

Action for self-hosted runners to manipulate iis application pools.

Required: IISAdministration

Inputs

Parameter Description Required Possible values
action The action to run true get-state, restart, start, stop
appPoolName Name of the target application pool true (if siteName not specified Any string
siteName Name of the target IIS site true (if appPoolName not specified) Any string

Examples

...
jobs:
  example:
    runs-on: [self-hosted, deploy]
    steps:
      - name: Start app pool
        id: start_app_pool
        uses: 1k-off/[email protected]
        with:
          action: start
          siteName: "Default Web Site"
          appPoolName:
      - run: Write-Host "App pool for the Default Web Site ${{ steps.start_app_pool.outputs.state }}"
...
...
jobs:
  example:
    runs-on: [self-hosted, deploy]
    steps:
      - name: Start app pool
        id: start_app_pool
        uses: 1k-off/[email protected]
        with:
          action: start
          siteName:
          appPoolName: "Default Web Site"
      - run: Write-Host "App pool for the Default Web Site ${{ steps.start_app_pool.outputs.state }}"
...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published