Skip to content

Commit

Permalink
fixed ci
Browse files Browse the repository at this point in the history
  • Loading branch information
swinkelhofer committed Oct 11, 2021
1 parent 48acc82 commit 5680099
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ jobs:

- name: Test
run: go test -v ./...

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ steps.release_name.outputs.VERSION }}
release_name: Release ${{ steps.release_name.outputs.VERSION }}
draft: false
prerelease: false

- name: Push
run: GOPROXY=proxy.golang.org go list -m github.com/arivum/resource-ticker/pkg/resources@${{ steps.release_name.outputs.VERSION }}
run: GOPROXY=proxy.golang.org go list -m github.com/arivum/resource-ticker@${{ steps.release_name.outputs.VERSION }}

0 comments on commit 5680099

Please sign in to comment.