Update .gitea/workflows/hello_world.yaml

This commit is contained in:
lobo 2025-04-12 23:03:21 +00:00
parent 7f307cf556
commit 8a1fef4087

View file

@ -19,10 +19,21 @@ jobs:
- name: Show environment - name: Show environment
run: env run: env
- run: true - run: true
- name: Setup zig - uses: actions/cache@v4
uses: https://github.com/mlugg/setup-zig@v1.2.1 id: cache
with: with:
version: 0.14.0 path: cached
key: ${{ runner.os }}-cached
- name: Create cached file
if: steps.cache.outputs.cache-hit != 'true'
run: echo foo > cached
- name: Is cached
if: steps.cache.outputs.cache-hit == 'true'
run: cat cached
# - name: Setup zig
# uses: https://github.com/mlugg/setup-zig@v1.2.1
# with:
# version: 0.14.0
# - name: Sign # - name: Sign
# id: sign # id: sign
# uses: https://git.lerch.org/lobo/action-hsm-sign@v1 # uses: https://git.lerch.org/lobo/action-hsm-sign@v1