Skip to content

Commit 6c49310

Browse files
committed
Fix Rocky asset upload: install gh
Signed-off-by: Gary Oberbrunner <[email protected]>
1 parent d4c465f commit 6c49310

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,13 @@ jobs:
245245
uses: ConorMacBride/install-package@v1
246246
if: ${{ matrix.aswfdockerbuild == false }}
247247
with:
248-
apt: libgl-dev libgl1-mesa-dev gh
249-
brew: ''
250-
brew-cask: ''
248+
apt: libgl-dev libgl1-mesa-dev
249+
250+
- name: Install gh cli if needed
251+
uses: ConorMacBride/install-package@v1
252+
if: ${{ matrix.aswfdockerbuild == true }}
253+
with:
254+
apt: gh
251255

252256
- name: Setup MSVC
253257
if: startsWith(matrix.os, 'windows')

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ See instructions in [Documentation/README.md](Documentation/README.md).
6464

6565
# Releases
6666

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

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

8787
We use [`sigstore`](https://github.com/marketplace/actions/gh-action-sigstore-python) to sign our github releases.
8888
Release signatures are created using short-lived certificates, and audit trails are stored online using `rekor.sigstore.com`.
89-
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:
89+
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:
9090
```
9191
cosign verify-blob \
9292
openfx-mac-release-x.y.tar.gz \

0 commit comments

Comments
 (0)