Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya committed Oct 26, 2020
1 parent b8d9d0c commit 06dc8be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: checker
name: ${{ env.BINARY_NAME }}-${{ env.VERSION }}-linux-amd64.tgz
path: ${{ env.BINARY_NAME }}-${{ env.VERSION }}-linux-amd64.tgz

- name: Build and push Docker images
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: checker
name: ${{ env.BINARY_NAME }}-${{ env.VERSION }}-linux-amd64.tgz
path: ${{ env.BINARY_NAME }}-${{ env.VERSION }}-linux-amd64.tgz

- name: Build and push Docker images
Expand All @@ -59,9 +59,9 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.BINARY_NAME }}-${{ env.VERSION }}-linux-amd64.tgz
asset_name: checker
asset_name: ${{ env.BINARY_NAME }}-${{ env.VERSION }}-linux-amd64.tgz
tag: ${{ github.ref }}
overwrite: true
body: "Checker release ${{ env.VERSION }}"
body: "Checker release ${{ env.VERSION }}"
env:
BINARY_NAME: "checker"

0 comments on commit 06dc8be

Please sign in to comment.