Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Jan 28, 2024
1 parent 96abb8f commit 7b2820c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:

- run: |
VERSION=${{ github.event.inputs.version }}
FILE=dctl-x86_64-apple-darwin.zip
wget https://github.com/doseiai/engine/releases/download/${VERSION}/${FILE}
shasum -a 256 ${FILE}
MACOS_INTEL_FILE=dctl-x86_64-apple-darwin.zip
MACOS_ARM_FILE=dctl-aarch64-apple-darwin.zip
LINUX_FILE=dctl-x86_64-unknown-linux-gnu.zip
wget -q https://github.com/doseiai/engine/releases/download/${VERSION}/${FILE}
wget -q https://github.com/doseiai/engine/releases/download/${VERSION}/${MACOS_ARM_FILE}
wget -q https://github.com/doseiai/engine/releases/download/${VERSION}/${LINUX_FILE}
shasum -a 256 ${MACOS_INTEL_FILE} ${MACOS_ARM_FILE} ${LINUX_FILE}

0 comments on commit 7b2820c

Please sign in to comment.