-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
We have the following Github workflow steps.
- name: Create 🐙 package
id: create-zip-package
uses: OctopusDeploy/create-zip-package-action@v3
with:
package_id: ${{ env.PACKAGE_NAME }}
version: ${{ env.VERSION_NUMBER }}
output_folder: "./artifacts"
base_path: "${{ inputs.terraform-path }}"
files: |
**/*.tf
- name: Push 🐙 package
uses: OctopusDeploy/push-package-action@v3
env:
OCTOPUS_URL: ${{ secrets.OCTOPUSSERVERURL }}
OCTOPUS_API_KEY: ${{ secrets.OCTOPUSSERVERAPIKEY }}
OCTOPUS_SPACE: ${{ secrets.OCTOPUSSERVER_SPACE }}
with:
packages: |
${{ steps.create-zip-package.outputs.package_file_path }}
- name: Push 🐙 build information
uses: OctopusDeploy/push-build-information-action@v3
env:
OCTOPUS_URL: ${{ secrets.OCTOPUSSERVERURL }}
OCTOPUS_API_KEY: ${{ secrets.OCTOPUSSERVERAPIKEY }}
OCTOPUS_SPACE: ${{ secrets.OCTOPUSSERVER_SPACE }}
with:
packages: |
${{ steps.create-zip-package.outputs.package_file_path }}
version: ${{ env.VERSION_NUMBER }}
All three steps show they succeed in GH logs:
The package exists in Octopus, but it does not have the build info. We have some older projects that were using the OctopusDeploy/push-package-action@v1.1.1
action and that continues to work with OctopusDeploy/push-build-information-action@v3
Metadata
Metadata
Assignees
Labels
No labels