From a97a1eda0ad2101a701073fc88be85eee7692e05 Mon Sep 17 00:00:00 2001 From: Evan Bolyen Date: Mon, 7 Aug 2023 11:35:37 -0700 Subject: [PATCH] typo --- .github/workflows/ci-distro-trial_4-upload-builds.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-distro-trial_4-upload-builds.yaml b/.github/workflows/ci-distro-trial_4-upload-builds.yaml index 41055a47..b56996f6 100644 --- a/.github/workflows/ci-distro-trial_4-upload-builds.yaml +++ b/.github/workflows/ci-distro-trial_4-upload-builds.yaml @@ -42,26 +42,26 @@ jobs: - name: copy seed environments shell: bash - runs: | + run: | cp ${{ env.seed_environment_path}}/* '${{ env.distributions_repo }}/${{ inputs.epoch }}/${{ inputs.distro }}/staged/' cp ${{ env.seed_environment_path}}/* '${{ env.distributions_repo }}/${{ inputs.epoch }}/${{ inputs.distro }}/passed/' - name: copy seed environments (release) if: ${{ inputs.is-release == 'true' }} shell: bash - runs: | + run: | cp ${{ env.seed_environment_path}}/* '${{ env.distributions_repo }}/${{ inputs.epoch }}/${{ inputs.distro }}/released/' - name: copy solved environments shell: bash - runs: | + run: | cp ${{ env.solved_environment_path}}/* '${{ env.distributions_repo }}/${{ inputs.epoch }}/${{ inputs.distro }}/staged/' cp ${{ env.solved_environment_path}}/* '${{ env.distributions_repo }}/${{ inputs.epoch }}/${{ inputs.distro }}/passed/' - name: copy solved environments (release) if: ${{ inputs.is-release == 'true' }} shell: bash - runs: | + run: | cp ${{ env.solved_environment_path}}/* '${{ env.distributions_repo }}/${{ inputs.epoch }}/${{ inputs.distro }}/released/' - uses: EndBug/add-and-commit@v9