Skip to content

Commit

Permalink
Fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
HadesArchitect authored May 21, 2020
1 parent 862ef78 commit c138fa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: go build
run: docker run --rm -v ${PWD}:/go/src/github.com/ha/gcp -w /go/src/github.com/ha/gcp golang go build -i -o ./dist/cassandra-plugin_linux_amd64 ./backend
- name: Packaging
run: tar -zcvf cassandra-datasource-${{ github.ref }}.tar.gz ./dist
run: tar -czvf cassandra-datasource-${{ github.event.release.tag_name }}.tar.gz ./dist
- name: Upload the artifacts
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: './cassandra-datasource-${{ github.ref }}.tar.gz'
args: './cassandra-datasource-${{ github.event.release.tag_name }}.tar.gz'

0 comments on commit c138fa2

Please sign in to comment.