Skip to content

Commit

Permalink
Update build_package_x86_noble.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Mar 24, 2024
1 parent 959095b commit 4387080
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions .github/workflows/build_package_x86_noble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,42 +28,42 @@ jobs:
apt update
apt install -y git sudo
- name: clone QOpenHD
run: |
git clone -b ${{ github.ref_name }} https://github.com/OpenHD/QOpenHD --recursive
# - name: clone QOpenHD
# run: |
# git clone -b ${{ github.ref_name }} https://github.com/OpenHD/QOpenHD --recursive

- name: Install Dependencies
run: |
ls
cd QOpenHD
sudo -H ./install_build_dep.sh ubuntu-x86
# - name: Install Dependencies
# run: |
# ls
# cd QOpenHD
# sudo -H ./install_build_dep.sh ubuntu-x86

- name: Build with make
run: |
cd QOpenHD
./package.sh x86_64 ubuntu noble
ls -a
# - name: Build with make
# run: |
# cd QOpenHD
# ./package.sh x86_64 ubuntu noble
# ls -a

- name: Upload to Github
uses: 'actions/upload-artifact@v2'
with:
name: "QOpenHD"
path: |
QOpenHD/*.deb
*.log
if-no-files-found: error
# - name: Upload to Github
# uses: 'actions/upload-artifact@v2'
# with:
# name: "QOpenHD"
# path: |
# QOpenHD/*.deb
# *.log
# if-no-files-found: error

- name: Push
id: push
uses: cloudsmith-io/action@master
with:
api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
command: "push"
format: "deb"
owner: "openhd"
repo: ${{ github.ref_name }}
distro: "ubuntu"
release: "noble"
republish: "true" # needed ONLY if version is not changing
file: "QOpenHD/*.deb"
if: ${{ github.ref != 'refs/heads/2.5-evo' }}
# - name: Push
# id: push
# uses: cloudsmith-io/action@master
# with:
# api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
# command: "push"
# format: "deb"
# owner: "openhd"
# repo: ${{ github.ref_name }}
# distro: "ubuntu"
# release: "noble"
# republish: "true" # needed ONLY if version is not changing
# file: "QOpenHD/*.deb"
# if: ${{ github.ref != 'refs/heads/2.5-evo' }}

0 comments on commit 4387080

Please sign in to comment.