Skip to content

Commit

Permalink
ci: Use the new utility to compose and publish apps
Browse files Browse the repository at this point in the history
Switch to usage of `composectl publish` instead of `compose-publish` in
the CI/github workflow for creation and publishing of Compose Apps.

Signed-off-by: Mike Sul <[email protected]>
  • Loading branch information
mike-sul committed Oct 28, 2024
1 parent da4a0b1 commit 6656cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fio-app-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
id: app
working-directory: ${{ env.COMPOSE_APP_DIR }}
run: |
compose-publish -d app.hash --pinned-images ${{needs.build-images.outputs.image_uri_ha-plugin}},${{needs.build-images.outputs.image_uri_ha-app}} ${{ env.FIO_REGISTRY }}/${{ env.FIO_FACTORY }}/${{ env.COMPOSE_APP_NAME }}:${{ needs.build-images.outputs.image_tag }} amd64,arm64
composectl publish --layers-manifest=false -d app.hash --pinned-images ${{needs.build-images.outputs.image_uri_ha-plugin}},${{needs.build-images.outputs.image_uri_ha-app}} ${{ env.FIO_REGISTRY }}/${{ env.FIO_FACTORY }}/${{ env.COMPOSE_APP_NAME }}:${{ needs.build-images.outputs.image_tag }} amd64,arm64
uri="${{ env.FIO_REGISTRY }}/${{ env.FIO_FACTORY }}/${{ env.COMPOSE_APP_NAME }}@$(cat app.hash)"
echo "app_uri=$uri" >> $GITHUB_OUTPUT
-
Expand Down

0 comments on commit 6656cfd

Please sign in to comment.