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

Commit

Permalink
Switch to GitHub
Browse files Browse the repository at this point in the history
This changes the import path along with setting up GitHub Actions for
the new repository.
  • Loading branch information
tdemin committed Jul 31, 2021
1 parent ae62b45 commit 0269b4e
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 34 deletions.
28 changes: 0 additions & 28 deletions .drone.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/goreleaser.yml
@@ -0,0 +1,24 @@
name: goreleaser

on:
pull_request:
push:

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Run goreleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
5 changes: 1 addition & 4 deletions .goreleaser.yml
Expand Up @@ -25,9 +25,6 @@ changelog:
- '^test:'

release:
gitea:
github:
owner: tdemin
name: syg_go

gitea_urls:
api: https://git.tdem.in/api/v1/
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@ threads for mining. It is based on `cmd/genkeys` from yggdrasil-go.

### Installation

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

If you're an Arch Linux user, you can install it from
[AUR](https://aur.archlinux.org/packages/syg_go/):
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,4 +1,4 @@
module git.tdem.in/tdemin/syg_go
module github.com/tdemin/syg_go

go 1.16

Expand Down

0 comments on commit 0269b4e

Please sign in to comment.