Compare commits

...

4 Commits
v3.6.1 ... main

Author SHA1 Message Date
c127f32583
don't upload artifact if binary is the same 2025-05-26 18:28:02 -04:00
8636d09b9b
remove duplicate yaml 2025-05-26 18:25:11 -04:00
87a94cead7
remove always condition 2025-05-26 18:24:29 -04:00
34a1206422
change workflow file name
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-05-26 18:22:28 -04:00

@ -46,6 +46,7 @@ jobs:
DETERMINATE_URL: ${{ env.DETERMINATE_URL }}
DERMINATE_BINARY: ${{ env.DETERMINATE_BINARY }}
- uses: actions/upload-artifact@v3
if: ${{ steps.binary-check.outputs.DETERMINATE_BINARY_DIFF != 0}}
with:
name: determinate-binary
path: ${{ env.DETERMINATE_BINARY }}
@ -59,7 +60,7 @@ jobs:
commit-data:
runs-on: ubuntu-latest
needs: [download-binary]
if: always() && ${{ needs.download-binary.outputs.DETERMINATE_BINARY_DIFF != 0 }}
if: ${{ needs.download-binary.outputs.DETERMINATE_BINARY_DIFF != 0 }}
steps:
- name: Reset outputs from previous job
run: |