summaryrefslogtreecommitdiffstats
path: root/.github/workflows/automated-build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/automated-build.yml')
-rw-r--r--.github/workflows/automated-build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/automated-build.yml b/.github/workflows/automated-build.yml
index b05bc87..bcf4b9d 100644
--- a/.github/workflows/automated-build.yml
+++ b/.github/workflows/automated-build.yml
@@ -62,7 +62,7 @@ jobs:
with:
use-cross: ${{ matrix.job.use-cross }}
command: build
- args: --locked --release --target=${{ matrix.job.target }}
+ args: --offline --release --target=${{ matrix.job.target }}
- name: Create tarball
id: package
shell: bash
@@ -104,7 +104,7 @@ jobs:
SUM_PATH=${PKG_STAGING}/${SUM_NAME}
OS="$(uname -s)"
- if [ "$OS" == "Linux" ]; then
+ if [ "$OS" == "Linux" ]; then
sha256sum ${PKG_PATH} > ${SUM_PATH}
elif [ "$OS" == "Darwin" ]; then
shasum -a 256 ${PKG_PATH} > ${SUM_PATH}