Skip to content

Commit

Permalink
Fix Rocky asset upload: install gh
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Oberbrunner <[email protected]>
  • Loading branch information
garyo committed Nov 26, 2024
1 parent d4c465f commit 6c49310
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,13 @@ jobs:
uses: ConorMacBride/install-package@v1
if: ${{ matrix.aswfdockerbuild == false }}
with:
apt: libgl-dev libgl1-mesa-dev gh
brew: ''
brew-cask: ''
apt: libgl-dev libgl1-mesa-dev

- name: Install gh cli if needed
uses: ConorMacBride/install-package@v1
if: ${{ matrix.aswfdockerbuild == true }}
with:
apt: gh

- name: Setup MSVC
if: startsWith(matrix.os, 'windows')
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ See instructions in [Documentation/README.md](Documentation/README.md).

# Releases

Release bundles are named like `openfx-<OS>-release-<REL>.zip` and `openfx-plugins-<OS>-release-<REL>.zip`.
Release bundles are named like `openfx-<OS>-release-<REL>.tar.gz` and `openfx_plugins-<OS>-release-<REL>.tar.gz`.
The `openfx-*` bundles contain all the header files as well as the support libs. They look like this:

```
Expand All @@ -86,7 +86,7 @@ The `openfx-plugins-*` bundles contain all the sample plugins for the OS. Copy t

We use [`sigstore`](https://github.com/marketplace/actions/gh-action-sigstore-python) to sign our github releases.
Release signatures are created using short-lived certificates, and audit trails are stored online using `rekor.sigstore.com`.
To verify a release artifact (zip file), unpack the zip into a `.tgz` and its associated `.tgz.sigstore.json`, and then use [`cosign`](https://docs.sigstore.dev/cosign/system_config/installation/) to verify the signature like this:
To verify a release artifact (`.tar.gz` file), download its associated `.tar.gz.sigstore.json`, and then use [`cosign`](https://docs.sigstore.dev/cosign/system_config/installation/) to verify the signature like this:
```
cosign verify-blob \
openfx-mac-release-x.y.tar.gz \
Expand Down

0 comments on commit 6c49310

Please sign in to comment.