OctopusDeploy / create-zip-package-action

| Public | :octocat: GitHub Action to Create a Zip Package to Upload to Octopus Deploy

Home Page:https://github.com/marketplace/actions/create-zip-package-for-octopus-deploy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

create-zip-package-action

This is a GitHub Action to create a Zip package(s) to push to Octopus Deploy.

Examples

steps:
  - uses: actions/checkout@v3

  # create a Zip package from files in the "reports" folder; create package in "packaging" folder
  - name: Create a Zip package πŸ™
    uses: OctopusDeploy/create-zip-package-action@v3
    with:
      package_id: 'DemoPackage'
      version: '1.0.0'
      output_folder: './packaging'
      base_path: reports
      files: |
        **/*.*

πŸ“₯ Inputs

Name Description
package_id Required. Package id.
version Required. Package version.
output_folder Required. The folder to put the resulting package in, relative to the current working directory, not the base_path.
base_path Required. The base path for the input files.
files Required. Multi-line list of files to include in the package, relative to the base path. Supports globbing.

πŸ“€ Outputs

Name Description
package_file_path The full path to the package file that was created.
package_filename The filename, without the path, of the file that was created.

Developers guide

Developers Guide

🀝 Contributions

Contributions are welcome! ❀️ Please read our Contributing Guide for information about how to get involved in this project.

About

| Public | :octocat: GitHub Action to Create a Zip Package to Upload to Octopus Deploy

https://github.com/marketplace/actions/create-zip-package-for-octopus-deploy

License:Other


Languages

Language:TypeScript 84.8%Language:JavaScript 15.2%