Skip to content

Commit

Permalink
Merge PR #46: Testnet Sommeiler version
Browse files Browse the repository at this point in the history
* Remove IL and Oracle modules from initial version

* Continue cleanup and running chain

* Release workflow
  • Loading branch information
jackzampolin authored Jun 23, 2021
1 parent b2f81e9 commit 0f3fadf
Show file tree
Hide file tree
Showing 168 changed files with 151 additions and 62,073 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CODEOWNERS: https://help.github.com/articles/about-codeowners/

# Primary repo maintainers
* @jackzampolin @zmanin @kkennis
* @jackzampolin @zmanin @kkennis @mvid @levicook
46 changes: 0 additions & 46 deletions .github/workflows/release-sims.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "Release"

on:
push:
branches:
- "RC[0-9]/**"
tags:
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0

- uses: actions/setup-go@v2
with:
go-version: '1.16'

- name: Build
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: build --skip-validate # skip validate skips initial sanity checks in order to be able to fully run

- name: Release
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist --release-notes=../release_notes.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
131 changes: 0 additions & 131 deletions .github/workflows/sims.yml

This file was deleted.

66 changes: 0 additions & 66 deletions .github/workflows/test.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
project_name: sommelier

env:
# Require use of Go modules.
- GO111MODULE=on

builds:
- id: "sommelier"
main: ./cmd/sommelier/main.go
ldflags:
- -X github.com/cosmos/cosmos-sdk/version.Name=sommelier -X github.com/cosmos/cosmos-sdk/version.AppName=sommelier -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }} -X github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64

checksum:
name_template: SHA256SUMS-{{.Version}}.txt
algorithm: sha256

release:
name_template: "Release {{.Version}}"

archives:
- files:
- LICENSE
- README.md
37 changes: 0 additions & 37 deletions CHANGELOG.md

This file was deleted.

Loading

0 comments on commit 0f3fadf

Please sign in to comment.