From 9f0019275d9b11669812f67a4466859f7ccab7a0 Mon Sep 17 00:00:00 2001 From: Lasse Alm Date: Mon, 16 Dec 2024 15:23:01 +0100 Subject: [PATCH] remove test file --- .github/workflows/release-test.yaml | 47 ----------------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/release-test.yaml diff --git a/.github/workflows/release-test.yaml b/.github/workflows/release-test.yaml deleted file mode 100644 index 0ff4317b..00000000 --- a/.github/workflows/release-test.yaml +++ /dev/null @@ -1,47 +0,0 @@ -name: Release node images - -on: - push: - branches: - - lma/fix/input -jobs: - generate-matrix: - runs-on: ubuntu-latest - outputs: - matrix: ${{ steps.set-matrix.outputs.matrix }} - steps: - - name: Initialize Matrix with alpha environments - run: | - MATRIX_JSON=$(echo '[ - ]' | jq -c) - echo "MATRIX_JSON=${MATRIX_JSON}" >> $GITHUB_ENV - - - name: Release candidate environments - run: | - MATRIX_JSON=$(echo "$MATRIX_JSON" | jq -c '. + [ - { - "env": "mainnet", - "tld": "software", - "cloud_provider": "aws", - "ami_users": "[\"727113945353\"]" - } - ]') - echo "MATRIX_JSON=${MATRIX_JSON}" >> $GITHUB_ENV - - - name: Output Matrix JSON - id: set-matrix - run: echo "matrix=$MATRIX_JSON" >> $GITHUB_OUTPUT - - release-concordium-node-image: - needs: [generate-matrix] - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }} - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set variables - run: | - export AMI_USERS='${{ matrix.ami_users }}'