prepare.sh 319 B

123456789
  1. #!/bin/sh
  2. PACKAGE_VERSION=$(grep version package.json | awk -F \" '{print $4}')
  3. TAG_NAME=$(git describe --tags --abbrev=0)
  4. echo version:${PACKAGE_VERSION}
  5. echo tag:${TAG_NAME}
  6. command docker buildx create --use --name multiarch --driver-opt network=host --buildkitd-flags '--allow-insecure-entitlement network.host'