Skip to content

Commit

Permalink
Migrate GitHub workflow from HCL to yaml (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Balazs Nadasdi authored Sep 11, 2019
1 parent 9ea3154 commit c3fd42b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/main.workflow

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on: release
name: Build
jobs:
build:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: release linux/amd64
uses: ngs/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: linux
- name: release windows/amd64
uses: ngs/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: windows
- name: release darwin/amd64
uses: ngs/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOARCH: amd64
GOOS: darwin

0 comments on commit c3fd42b

Please sign in to comment.