ci: testing
This commit is contained in:
parent
09fafa7bea
commit
fb5e3b9443
3 changed files with 38 additions and 0 deletions
17
.forgejo/actions/nested/test.yml
Normal file
17
.forgejo/actions/nested/test.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# action.yml
|
||||||
|
name: test
|
||||||
|
author: viceice
|
||||||
|
description: 'testing'
|
||||||
|
branding:
|
||||||
|
icon: 'package'
|
||||||
|
color: 'blue'
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- shell: bash
|
||||||
|
run: |
|
||||||
|
echo "uname: $(uname -p)"
|
||||||
|
echo "runner.arch: ${{ runner.arch }}"
|
||||||
|
echo "RUNNER_ARCH: ${RUNNER_ARCH}"
|
||||||
|
- uses: sigstore/cosign-installer@11086d25041f77fe8fe7b9ea4e48e3b9192b8f19 # v3.1.2
|
19
.forgejo/actions/test/action.yml
Normal file
19
.forgejo/actions/test/action.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# action.yml
|
||||||
|
name: test
|
||||||
|
author: viceice
|
||||||
|
description: 'testing'
|
||||||
|
branding:
|
||||||
|
icon: 'package'
|
||||||
|
color: 'blue'
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- shell: bash
|
||||||
|
run: |
|
||||||
|
echo "uname: $(uname -p)"
|
||||||
|
echo "runner.arch: ${{ runner.arch }}"
|
||||||
|
echo "RUNNER_ARCH: ${RUNNER_ARCH}"
|
||||||
|
|
||||||
|
- uses: ./forgejo/actions/nested
|
||||||
|
- uses: sigstore/cosign-installer@11086d25041f77fe8fe7b9ea4e48e3b9192b8f19 # v3.1.2
|
|
@ -9,4 +9,6 @@ jobs:
|
||||||
echo "uname: $(uname -p)"
|
echo "uname: $(uname -p)"
|
||||||
echo "runner.arch: ${{ runner.arch }}"
|
echo "runner.arch: ${{ runner.arch }}"
|
||||||
echo "RUNNER_ARCH: ${RUNNER_ARCH}"
|
echo "RUNNER_ARCH: ${RUNNER_ARCH}"
|
||||||
|
|
||||||
|
- uses: ./forgejo/actions/nested
|
||||||
- uses: sigstore/cosign-installer@11086d25041f77fe8fe7b9ea4e48e3b9192b8f19 # v3.1.2
|
- uses: sigstore/cosign-installer@11086d25041f77fe8fe7b9ea4e48e3b9192b8f19 # v3.1.2
|
||||||
|
|
Loading…
Reference in a new issue