diff --git a/.github/build.yaml.gomplate b/.github/build.yaml.gomplate index b439245e359..018c7334d5d 100644 --- a/.github/build.yaml.gomplate +++ b/.github/build.yaml.gomplate @@ -507,10 +507,16 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install deps + run: | + sudo -E make deps + - name: Export cOS version + run: | + echo "COS_VERSION=$(yq r packages/cos/collection.yaml 'packages.[0].version')" >> $GITHUB_ENV - name: Download result for build uses: actions/download-artifact@v2 with: - name: cOS-raw-img-opensuse + name: cOS-Vanilla-RAW-${{ env.COS_VERSION }}-opensuse-${{ github.sha }}.raw path: . - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1 diff --git a/.github/workflows/build-master.yaml b/.github/workflows/build-master.yaml index 3bebeacc80d..37ef47a7662 100644 --- a/.github/workflows/build-master.yaml +++ b/.github/workflows/build-master.yaml @@ -1061,10 +1061,16 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install deps + run: | + sudo -E make deps + - name: Export cOS version + run: | + echo "COS_VERSION=$(yq r packages/cos/collection.yaml 'packages.[0].version')" >> $GITHUB_ENV - name: Download result for build uses: actions/download-artifact@v2 with: - name: cOS-raw-img-opensuse + name: cOS-Vanilla-RAW-${{ env.COS_VERSION }}-opensuse-${{ github.sha }}.raw path: . - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1