Skip to content

Commit

Permalink
Try to get signing cert/sig included
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Oberbrunner <[email protected]>
  • Loading branch information
garyo committed Nov 25, 2024
1 parent 5d1fc93 commit a65ec13
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ jobs:
# add to PATH
PATH=$PATH:/opt/venv/bin
echo "/opt/venv/bin" >> $GITHUB_PATH
ln -sf /opt/venv/bin/python3 /usr/local/bin/python
which python
python --version
- name: Install Conan
id: conan
Expand Down Expand Up @@ -348,8 +350,8 @@ jobs:
# if: github.event_name == 'release'
with:
inputs: openfx-${{ env.RELEASE_NAME }}.tar.gz
upload-signing-artifacts: false
release-signing-artifacts: false
upload-signing-artifacts: true
release-signing-artifacts: true

- name: Upload header/libs tarball and signatures
uses: actions/upload-artifact@v3
Expand All @@ -359,6 +361,7 @@ jobs:
openfx-${{ env.RELEASE_NAME }}.tar.gz
openfx-${{ env.RELEASE_NAME }}.tar.gz.sig
openfx-${{ env.RELEASE_NAME }}.tar.gz.crt
strip-path-prefix: build/Release

# Now the same, for the plugins

Expand All @@ -371,10 +374,10 @@ jobs:
# if: github.event_name == 'release'
with:
inputs: openfx-plugins-${{ env.RELEASE_NAME }}.tar.gz
upload-signing-artifacts: false
release-signing-artifacts: false
upload-signing-artifacts: true
release-signing-artifacts: true

- name: Upload tarball and signatures
- name: Upload plugins tarball and signatures
uses: actions/upload-artifact@v3
with:
name: "openfx-plugins-${{ env.RELEASE_NAME }}"
Expand Down

0 comments on commit a65ec13

Please sign in to comment.