Skip to content

Commit

Permalink
trying to publish binary from image
Browse files Browse the repository at this point in the history
  • Loading branch information
olegfomenko committed Nov 23, 2023
1 parent c6b84ea commit dbd8d79
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,18 @@ jobs:
path: "/usr/local/bin/rarimo-core"

- uses: ncipollo/release-action@v1
id: create-release
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: ${{steps.extract.outputs.destination}}/rarimo-core
tag: $GITHUB_REF_NAME
name: Release $GITHUB_REF_NAME
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ${{steps.extract.outputs.destination}}/rarimo-core
asset_name: rarimo-core-alpine-linux-amd64

0 comments on commit dbd8d79

Please sign in to comment.