diff --git a/.github/workflows/build_ubuntu_artifacts.yml b/.github/workflows/build_ubuntu_artifacts.yml new file mode 100644 index 00000000000000..8f09fc476419a4 --- /dev/null +++ b/.github/workflows/build_ubuntu_artifacts.yml @@ -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" \ No newline at end of file