Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
ci: Add version file to binary release
✗ CI failure cloudhead committed 2 years ago
commit 54aacc96197a48b79fcc260f94312d824f5e0a34
parent d7c88f12ab444d2a3c5e807b6036b0d91652f095
1 failed (1 total) View logs
3 files changed +34 -26
modified .github/workflows/release.yml
@@ -22,9 +22,9 @@ jobs:
            docker_options: -v /home/runner/work/heartwood/heartwood:/home/rust/src -v /home/runner/.cargo/git:/root/.cargo/git -v /home/runner/.cargo/registry:/root/.cargo/registry
    steps:
      - name: Checkout source code
-
        uses: actions/checkout@v3
+
        uses: actions/checkout@v4
      - name: Configure build cache
-
        uses: actions/cache@v3
+
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
@@ -58,16 +58,16 @@ jobs:
          - aarch64-apple-darwin
          - x86_64-apple-darwin
    steps:
-
      - uses: actions/checkout@v3
+
      - uses: actions/checkout@v4
      - name: Configure build cache
-
        uses: actions/cache@v3
+
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
          key: cargo-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
-
      - uses: dtolnay/rust-toolchain@1.67
+
      - uses: dtolnay/rust-toolchain@stable
      - name: Build the release binaries
        run: .github/workflows/build.bash "${{ matrix.target }}"
      - name: Build the debug binaries
@@ -80,7 +80,7 @@ jobs:
    needs: [release-linux-binaries, release-macos-binaries]
    runs-on: ubuntu-20.04
    steps:
-
      - uses: actions/checkout@v3
-
      - run: .github/workflows/update-latest-symlink.bash "${{ github.sha }}"
+
      - uses: actions/checkout@v4
+
      - run: .github/workflows/update-latest-symlink.sh "${{ github.sha }}"
        env:
          SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
deleted .github/workflows/update-latest-symlink.bash
@@ -1,19 +0,0 @@
-
#!/bin/bash
-

-
set -o errexit
-
set -o nounset
-
set -o pipefail
-

-
main () {
-
    if [[ $# -ne 1 ]]; then
-
        echo "$#: Wrong number of arguments"
-
        return 1
-
    fi
-

-
    local sha=$1
-
    echo "$SSH_PRIVATE_KEY" >ssh-private-key
-
    chmod go-rwx ssh-private-key
-
    ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ssh-private-key github-actions@files.radicle.xyz ln -snf "/mnt/radicle/releases/${sha}" "/mnt/radicle/releases/latest"
-
}
-

-
main "$@"
added .github/workflows/update-latest-symlink.sh
@@ -0,0 +1,27 @@
+
#!/bin/sh
+

+
set -o errexit
+
set -o nounset
+

+
remotely() {
+
  ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ssh-private-key github-actions@files.radicle.xyz "$@"
+
}
+

+
main () {
+
  if [ $# -ne 1 ]; then
+
    echo "$#: Wrong number of arguments"
+
    return 1
+
  fi
+
  target="x86_64-unknown-linux-musl"
+
  sha=$1
+

+
  trap 'rm -f ssh-private-key' EXIT
+

+
  echo "$SSH_PRIVATE_KEY" > ssh-private-key
+
  chmod go-rwx ssh-private-key
+

+
  remotely "/mnt/radicle/releases/${sha}/${target}/rad version --json > /mnt/radicle/releases/${sha}/version.json"
+
  remotely ln -snf "/mnt/radicle/releases/${sha}" "/mnt/radicle/releases/latest"
+
}
+

+
main "$@"