diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..42e0d9b --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,22 @@ +on: [push] +jobs: + test: + runs-on: docker + steps: + - uses: https://code.forgejo.org/actions/checkout@v3 + with: + fetch-depth: 0 + - uses: https://code.forgejo.org/actions/setup-go@v4 + with: + go-version-file: "go.mod" + - name: Install dependencies + run: go mod download + - name: Build go + run: go build -o serv -v ./... + - uses: https://code.forgejo.org/actions/forgejo-release@v1 + with: + direction: upload + url: https://gitrepo.ru + repo: neonxp/serv + release-dir: . + token: '${{secrets.RELEASE_TOKEN}}' \ No newline at end of file