Skip to content

Build info not appearing on packages #234

@jwilmoth-ehs

Description

@jwilmoth-ehs

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:

image

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions