mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
e2e: Use default shell parameters
This commit is contained in:
parent
0c5c11e8b7
commit
b256222b42
2
.github/actions/build_cli/action.yml
vendored
2
.github/actions/build_cli/action.yml
vendored
@ -73,8 +73,6 @@ runs:
|
||||
if: ${{ inputs.cosignPublicKey != '' && inputs.cosignPrivateKey != '' && inputs.cosignPassword != '' }}
|
||||
- name: Sign CLI
|
||||
run: |
|
||||
set -e
|
||||
set -o pipefail
|
||||
SIGN_TARGET=constellation-${{ inputs.targetOS }}-${{ inputs.targetArch }}
|
||||
echo "$COSIGN_PUBLIC_KEY" > cosign.pub
|
||||
# Enabling experimental mode also publishes signature to Rekor
|
||||
|
@ -77,8 +77,6 @@ runs:
|
||||
if: ${{ inputs.cosignPublicKey != '' && inputs.cosignPrivateKey != '' && inputs.cosignPassword != '' }}
|
||||
- name: Sign measurements
|
||||
run: |
|
||||
set -e
|
||||
set -o pipefail
|
||||
echo "$COSIGN_PUBLIC_KEY" > cosign.pub
|
||||
# Enabling experimental mode also publishes signature to Rekor
|
||||
COSIGN_EXPERIMENTAL=1 cosign sign-blob --key env://COSIGN_PRIVATE_KEY measurements.yaml > measurements.yaml.sig
|
||||
|
4
.github/actions/pseudo_version/action.yml
vendored
4
.github/actions/pseudo_version/action.yml
vendored
@ -29,8 +29,6 @@ runs:
|
||||
- name: get pseudo version
|
||||
id: pseudo-version
|
||||
run: |
|
||||
set -e
|
||||
set -o pipefail
|
||||
if $(git rev-parse --is-shallow-repository); then
|
||||
git fetch --prune --unshallow --tags -v
|
||||
else
|
||||
@ -52,4 +50,4 @@ runs:
|
||||
echo "::set-output name=branchName::${branchName}"
|
||||
echo "::set-output name=releaseVersion::${releaseVersion}"
|
||||
working-directory: hack/pseudo-version
|
||||
shell: bash {0}
|
||||
shell: bash
|
||||
|
2
.github/workflows/build-coreos.yml
vendored
2
.github/workflows/build-coreos.yml
vendored
@ -114,7 +114,7 @@ jobs:
|
||||
|
||||
- name: Build and Upload
|
||||
id: build-and-upload
|
||||
shell: bash {0}
|
||||
shell: bash
|
||||
run: |
|
||||
make cosa-image
|
||||
make -j$(nproc) CONTAINER_ENGINE=docker NETRC=/tmp/.netrc \
|
||||
|
Loading…
Reference in New Issue
Block a user