diff options
author | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-08-07 22:28:46 +0300 |
---|---|---|
committer | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-08-07 23:30:14 +0300 |
commit | dfda9e3fb020203f2fae2735188bd9cffca8f59e (patch) | |
tree | fbf70c3ae50d3c0fbf667bad8a3d0bf70622c0ff | |
parent | d74e5f27a6f61310f3a93a5d38d3b7398cc33b5b (diff) |
-rw-r--r-- | .forgejo/workflows/build.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..dc4fe8a --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,22 @@ +on: [push] +jobs: + test: + runs-on: docker + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: 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: 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 |