Skip to content

Commit

Permalink
potential fix for quantic package workflow?
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonMilord committed Oct 23, 2023
1 parent 776a4f3 commit de43cf5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/create-quantic-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,15 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check SHA
id: check_sha
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
with:
path: check-SHA
key: check-SHA-${{ github.sha }}
- run: |
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
if [[ ${{ contains(needs.*.result, 'failure') }} == "false" ]]; then
if [[ ${{ contains(needs.*.result, 'failure') }} == "false" || ${{ steps.check_sha.outputs.cache-hit }} == "true" ]]; then
message="🟢 Create Quantic Package build run success"
else
message="🔴 Create Quantic Package build run failure"
Expand Down

0 comments on commit de43cf5

Please sign in to comment.