Skip to content

Commit

Permalink
[WIP] upload artifacts
Browse files Browse the repository at this point in the history
Signed-off-by: Yorgos Saslis <[email protected]>
  • Loading branch information
gsaslis committed Jan 14, 2025
1 parent 56b80ed commit a80b006
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,23 @@ jobs:
--target=aarch64-apple-darwin \
--target=x86_64-unknown-linux-gnu \
--target=aarch64-unknown-linux-gnu
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: cdylib
path: |
target/aarch64-unknown-linux-gnu/release/libjrad.so
target/aarch64-unknown-linux-gnu/release/jrad
target/aarch64-apple-darwin/release/libjrad.dylib
target/x86_64-apple-darwin/release/libjrad.dylib
target/x86_64-unknown-linux-gnu/release/libjrad.so
target/x86_64-unknown-linux-gnu/release/jrad
buildPluginArtifact:
name: Create Plugin Artifact
runs-on: ubuntu-latest
needs: buildRustLibrary
outputs:
version: ${{ steps.properties.outputs.version }}
steps:
Expand Down Expand Up @@ -72,11 +84,10 @@ jobs:
echo "${RAD_HOME}/bin" >> $GITHUB_PATH
echo "RAD_HOME=${{ github.workspace }}/.radicle" >> $GITHUB_ENV
- name: Build Rust Native Library
env:
RAD_HOME: ${{ github.workspace }}/.radicle
run: |
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: cdylib

# Prepare plugin archive content for creating artifact
- name: Prepare Plugin Artifact
Expand Down

0 comments on commit a80b006

Please sign in to comment.