New Version Release #368
sgollapudi77
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Release v3 🎉
Released a new version of the Gh action
webapps-deploy
- v3. With the new deploy feature, there are more options you can provide in the action parameters. To know more about the release visit here.Features
type
- The type of the artifact being deployed, this sets the default target path and informs the web app how the deployment should be handled.JAR, WAR, EAR, ZIP, Static
- type=war: Deploy a WAR package. By default, the WAR package is deployed to /home/site/wwwroot/app.war. The target path can be specified with parameter target-path.
target-path
- The absolute path to deploy the artifact to.{string}
/home/site/wwwroot
clean
- Specifies whether to clean (delete) the target deployment before deploying the artifact there.true/false
clean=true
restart
- By default, the API restarts the app following the deployment operation (restart=true). To deploy multiple artifacts, prevent restarts on all but the final deployment by setting restart=false.true/false
restart=true
Example
Beta Was this translation helpful? Give feedback.
All reactions