Skip to content
This repository was archived by the owner on Mar 21, 2022. It is now read-only.

Commit 0269b4e

Browse files
committed
Switch to GitHub
This changes the import path along with setting up GitHub Actions for the new repository.
1 parent ae62b45 commit 0269b4e

File tree

5 files changed

+27
-34
lines changed

5 files changed

+27
-34
lines changed

.drone.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/goreleaser.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: goreleaser
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
goreleaser:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v2
13+
- name: Set up Go
14+
uses: actions/setup-go@v2
15+
with:
16+
go-version: 1.16
17+
- name: Run goreleaser
18+
uses: goreleaser/goreleaser-action@v2
19+
with:
20+
distribution: goreleaser
21+
version: latest
22+
args: release --rm-dist
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ changelog:
2525
- '^test:'
2626

2727
release:
28-
gitea:
28+
github:
2929
owner: tdemin
3030
name: syg_go
31-
32-
gitea_urls:
33-
api: https://git.tdem.in/api/v1/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ threads for mining. It is based on `cmd/genkeys` from yggdrasil-go.
77

88
### Installation
99

10-
`% go get -u -v git.tdem.in/tdemin/syg_go`
10+
`% go get -u -v github.com/tdemin/syg_go`
1111

1212
If you're an Arch Linux user, you can install it from
1313
[AUR](https://aur.archlinux.org/packages/syg_go/):

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module git.tdem.in/tdemin/syg_go
1+
module github.com/tdemin/syg_go
22

33
go 1.16
44

0 commit comments

Comments
 (0)