Deploying my first Action

Hi

Built my first action using the example.

git clone https://gitea.com/Zettat123/simple-go-action
go build
scp simple-go-action somewhereontheweb

Created a pipeline which uses this

    steps:
      - name: Use Go Action  
        id: use-go-action
        uses: somewhereontheweb/simple-go-action
        with:
          username: foo

Can you not just run the binary?

Aren’t you supposed to use runs-on?

I don’t believe you can do otherwise and just run on the runner.

1 Like

Got it working in the end by making a public repo.