fix
Some checks failed
Gitea Actions Demo / Gitea-Actions (push) Failing after 41s
Gitea Actions Demo / test (push) Successful in 1m24s
Gitea Actions Demo / build (push) Successful in 1m22s
Gitea Actions Demo / setup (push) Successful in 1m2s

This commit is contained in:
seepine 2023-08-02 09:35:18 +08:00
parent 209618a6a2
commit 4d37530274

View File

@ -57,12 +57,18 @@ jobs:
build:
needs: setup
env:
- HASH: needs.setup.outputs.hash
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- run: echo "${{ env.HASH }}"
- run: echo "${{ workflows.setup.steps.get-hash.outputs.hash }}"
- run: echo "${{ workflows.setup.outputs.hash }}"
- run: echo "${{ needs.setup.steps.get-hash.outputs.hash }}"
- run: echo "${{ needs.setup.outputs.hash }}"
- run: echo "${{ steps.get-hash.outputs.hash }}"