14 lines
No EOL
313 B
YAML
14 lines
No EOL
313 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: golang:latest
|
|
steps:
|
|
- run: ls
|
|
- run: go build -x -v -o=stbackend -buildvcs=true ./cmd/stbackend/main.
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: build-artifact
|
|
path: ./stbackend |