mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 15:39:37 -05:00
remove duplicate coordinator name (#255)
* remove duplicate coordinator name * Adjust if condition Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
c2359fa6c8
commit
4f536c083d
2
.github/workflows/build-coordinator.yml
vendored
2
.github/workflows/build-coordinator.yml
vendored
@ -55,7 +55,7 @@ jobs:
|
|||||||
|
|
||||||
call-coreos:
|
call-coreos:
|
||||||
needs: build-coordinator
|
needs: build-coordinator
|
||||||
if: github.ref == 'refs/heads/main' && startsWith(needs.build-coordinator.outputs.coordinator-name, 'coordinator-')
|
if: ${{ (github.ref == 'refs/heads/main') && startsWith(needs.build-coordinator.outputs.coordinator-name, 'coordinator-') }}
|
||||||
uses: ./.github/workflows/build-coreos.yml
|
uses: ./.github/workflows/build-coreos.yml
|
||||||
with:
|
with:
|
||||||
coordinator-name: ${{ needs.build-coordinator.outputs.coordinator-name }}
|
coordinator-name: ${{ needs.build-coordinator.outputs.coordinator-name }}
|
||||||
|
2
.github/workflows/build-coreos.yml
vendored
2
.github/workflows/build-coreos.yml
vendored
@ -104,6 +104,6 @@ jobs:
|
|||||||
- name: "Build and Upload"
|
- name: "Build and Upload"
|
||||||
run: >
|
run: >
|
||||||
make -j$(nproc) CONTAINER_ENGINE=docker NETRC=/tmp/.netrc GCP_IMAGE_NAME="${{ env.IMAGE_TIMESTAMP }}" AZURE_IMAGE_NAME="${{ env.IMAGE_TIMESTAMP }}"
|
make -j$(nproc) CONTAINER_ENGINE=docker NETRC=/tmp/.netrc GCP_IMAGE_NAME="${{ env.IMAGE_TIMESTAMP }}" AZURE_IMAGE_NAME="${{ env.IMAGE_TIMESTAMP }}"
|
||||||
AZURE_IMAGE_DEFINITION="constellation-coreos" AZURE_IMAGE_VERSION="${{env.IMAGE_VERSION }}" DOWNLOAD_COORDINATOR=y COORDINATOR_URL="https://${{ secrets.PUBLIC_BUCKET_NAME }}.s3.us-east-2.amazonaws.com/coordinator/${{ inputs.coordinator-name }}${{ github.event.inputs.coordinator-name }}"
|
AZURE_IMAGE_DEFINITION="constellation-coreos" AZURE_IMAGE_VERSION="${{env.IMAGE_VERSION }}" DOWNLOAD_COORDINATOR=y COORDINATOR_URL="https://${{ secrets.PUBLIC_BUCKET_NAME }}.s3.us-east-2.amazonaws.com/coordinator/${{ inputs.coordinator-name }}"
|
||||||
image-gcp image-azure upload-gcp upload-azure
|
image-gcp image-azure upload-gcp upload-azure
|
||||||
working-directory: ${{ env.working-directory }}
|
working-directory: ${{ env.working-directory }}
|
||||||
|
Loading…
Reference in New Issue
Block a user