summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-12-16 11:42:50 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-12-16 11:42:50 +0800
commit7c40f95b4e05eacfbdb0e3267d443f4642c9f80b (patch)
tree3903ea77f930640169d329d7836f3e6101772858 /.github
parent848c3edc45ef645f8403673dfca9764f62ecb51e (diff)
hopefully fix release pipeline
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"