Skip to content

Instantly share code, notes, and snippets.

@davestephens
Created June 12, 2017 07:26
Show Gist options
  • Save davestephens/006ec0a7aa551095dbba0d157958048f to your computer and use it in GitHub Desktop.
Save davestephens/006ec0a7aa551095dbba0d157958048f to your computer and use it in GitHub Desktop.
Deploying Linux packages with Octopus Deploy
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>InfluxDb</id>
<version>1.2.4</version>
<authors>InfluxData</authors>
<owners>InfluxData</owners>
<projectUrl>https://www.influxdata.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>https://www.influxdata.com/</description>
<tags>influxdb timeseries database</tags>
<dependencies>
</dependencies>
</metadata>
<files>
<file src="*.*" target="lib" />
<file src="**\*.*" target="lib" />
</files>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment