Skip to content

Commit

Permalink
Builds eggs and upload them at release time
Browse files Browse the repository at this point in the history
Commit 033e522 enabled the building of plugins' eggs as a pre-merge
check.  This adds the building and uploading of plugins' eggs as part
of the release process.

Signed-off-by: Cleber Rosa <[email protected]>
  • Loading branch information
clebergnu committed Jul 18, 2023
1 parent af38c50 commit f47ea05
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 @@ -100,12 +100,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Build eggs
run: python setup.py bdist_egg
run: make -f Makefile.gh build-egg
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: ${{ github.workspace }}/dist/avocado_framework*
file: ${{ github.workspace }}/EGG_UPLOAD/avocado_framework*egg
tag: ${{ github.event.inputs.version }}
overwrite: true
file_glob: true

0 comments on commit f47ea05

Please sign in to comment.