test-go-auction/.gitea/workflows/call-username.yml
Xiufeng Guo 43b07e21f2
Some checks failed
Test Go Action / use-go-action (push) Failing after 26s
Create call-username.yml
2024-07-10 19:35:50 +09:00

20 lines
455 B
YAML

name: 'Test Go Action'
on: [push]
jobs:
use-go-action:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Use Go Action
id: use-go-action
uses: https://gitea.com/Zettat123/simple-go-action@v1
with:
username: foo
- name: Print Output
run: echo 'output time is ${{ steps.use-go-action.outputs.time }}'