summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 28ae254..883e494 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -31,6 +31,8 @@ jobs:
- name: Get the release version from the tag
if: env.ARTIFACT_VERSION == ''
+ env:
+ ACTIONS_ALLOW_UNSECURE_COMMANDS: true # this is the quick fix because we don't actually log anything secret.
run: |
# Apparently, this is the right way to get a tag name. Really?
#
@@ -135,6 +137,8 @@ jobs:
target: ${{ matrix.target }}
- name: Use Cross
+ env:
+ ACTIONS_ALLOW_UNSECURE_COMMANDS: true # this is the quick fix because we don't actually log anything secret.
run: |
# FIXME: to work around bugs in latest cross release, install master.
# ME: Still needed? Issue seems closed
@@ -157,6 +161,8 @@ jobs:
path: artifacts
- name: Set release upload URL and release version
+ env:
+ ACTIONS_ALLOW_UNSECURE_COMMANDS: true # this is the quick fix because we don't actually log anything secret.
shell: bash
run: |
release_upload_url="$(cat artifacts/release-upload-url)"
@@ -184,6 +190,8 @@ jobs:
- name: Build archive
shell: bash
+ env:
+ ACTIONS_ALLOW_UNSECURE_COMMANDS: true # this is the quick fix because we don't actually log anything secret.
run: |
staging="${{ env.BIN_NAME }}-${{ env.RELEASE_VERSION }}-${{ matrix.target }}"
mkdir -p "$staging"