Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

release-0.14

Compare
Choose a tag to compare
@skx skx released this 14 May 05:31
· 6 commits to master since this release

release-0.14

This release of the github-action-publish-binaries action allows you to specify the ID of the release to which the assets should be uploaded. By default we expect that this action will be invoked when a release is created, via a workflow file that starts like so:

on:
  release:
      types: [created]
name: Handle Release
jobs:
    ...

When the action is invoked with a newly created release we can extract the appropriate ID using jq, however it is possible that you might wish to chain actions, such that a preceeding action will create a release, and in that case you"ll want to specify the release ID when invoking this action. That is now possible.

  • Reported in #20
  • Implemented in #21
    • Thanks to @09wattry for his patience and assistance.