We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceeb1cd commit bc180ceCopy full SHA for bc180ce
.github/workflows/release-reproducible.yml
@@ -18,7 +18,7 @@ jobs:
18
runs-on: ubuntu-latest
19
steps:
20
- name: Extract version
21
- run: echo "VERSION=$(echo ${GITHUB_REF#(refs/tags/|refs/heads/)})" >> $GITHUB_OUTPUT
+ run: echo VERSION=$(echo "$GITHUB_REF" | sed -E 's#^refs/(tags|heads)/##') >> $GITHUB_OUTPUT
22
id: extract_version
23
outputs:
24
VERSION: ${{ steps.extract_version.outputs.VERSION }}
@@ -45,7 +45,7 @@ jobs:
45
build-reproducible:
46
name: build and push reproducible image and binaries
47
# TODO: update runner
48
- runs-on: warp-ubuntu-2404-x64-32x
+ runs-on: warp-ubuntu-2404-x64-2x
49
# needs: [extract-version, wait-for-release]
50
needs: [extract-version] # TODO
51
permissions:
0 commit comments