This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build DQMGUI Installation Package | |
on: [push] | |
jobs: | |
build_and_upload: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Download and compress dependencies | |
run: | | |
sudo apt update && sudo apt install -y libcurl4-gnutls-dev | |
$(which python3) --version | |
bash download_dependencies.sh | |
rm -rf .git | |
mkdir -p /tmp/dqmgui | |
tar -cf /tmp/dqmgui/dqmgui_installation_package.tar.gz . -I "gzip --best" | |
- name: Archive package artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dqmgui-installation-package | |
path: | | |
/tmp/dqmgui/dqmgui_installation_package.tar.gz |