test-go-auction/.gitea/workflows/call-username.yml
Workflow config file is invalid. Please check your config file: yaml: line 6: did not find expected key

22 lines
515 B
YAML

name: 'Test Go Action'
on: [push]
jobs:
use-go-action:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/checkout@v4
uses: actions/setup-go@v5
with:
go-version: '1.20'
- run: go version
- 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 }}'