Skip to content

Commit

Permalink
Merge pull request #26 from LeoVie/different-release-approach
Browse files Browse the repository at this point in the history
Different release approach
  • Loading branch information
LeoVie authored Sep 14, 2022
2 parents 26c8e8a + 43e3e4c commit a5e9bce
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/finish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,22 @@ jobs:
run: |
make build_for_all_platforms version=${{ steps.get_version.outputs.VERSION }}
- uses: "marvinpinto/action-automatic-releases@latest"
- name: Upload build artifacts to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: |
LICENSE
build/*
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true

- name: Upload LICENSE to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: LICENSE
tag: ${{ github.ref }}
overwrite: true

Build_and_push_Docker_image:
runs-on: ubuntu-latest
Expand Down

0 comments on commit a5e9bce

Please sign in to comment.