Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github Action to create an Ubuntu Artifact #24942

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/build_ubuntu_artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: build-ubuntu-artifacts
on:
push:
branches:
- master
jobs:
build-python-binaries:
runs-on: ubuntu-latest
steps:
- name: 'checkout the branch'
uses: actions/checkout@v2
- name: 'configure'
run: ./configure
- name: 'build Python'
run: make
- name: 'Install Python'
run: make install DESTDIR=build_binary
- name: 'Uplaod the build artifact'
uses: actions/upload-artifact@v2
with:
name: python-binary
path: build_binary
- name: 'Install hub'
run: sudo apt update
- run: sudo apt install hub
- name: 'Create a release'
run: hub release create -m "TestRel"