Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Commit

Permalink
Organize the pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
Svetlin Ralchev committed Dec 13, 2019
1 parent 205bd72 commit 8b3e3d2
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 28 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: pipeline
name: main

on:
push:
branches:
Expand All @@ -7,7 +8,7 @@ on:

jobs:
pipeline:
name: Run Tests
name: pipeline
runs-on: ubuntu-latest
steps:
- name: Check out code
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: release

on:
push:
tags:
- 'v*'

jobs:
pipeline:
name:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Set up Golang
uses: actions/setup-go@v1
with:
go-version: '1.13.x'
- name: Install Golang tools
run: GO111MODULE=on go install github.com/mitchellh/gox
- name: Build project
run: ls -l $GOPATH && ls -l $GOBIN
26 changes: 0 additions & 26 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit 8b3e3d2

Please sign in to comment.