Skip to content

Commit

Permalink
differenciate
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Feb 17, 2024
1 parent 7d3951b commit a307bc8
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
echo "testing"
ls -a rockchip-iqfiles/
sudo gem install fpm
fpm -a arm64 -s dir -t deb -n rockchip-iq-openhd -v 0.2 -C rockchip-iqfiles -p rockchip-iq-openhd_VERSION_ARCH.deb
fpm -a arm64 -s dir -t deb -n rockchip-iq-openhd-r5 -v 0.2 -C rockchip-iqfiles -p rockchip-iq-openhd-r5_VERSION_ARCH.deb
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/releaserk3566.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build & Release
on:
push:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Build
run: |
ls -a
mkdir -p etc/iqfiles/
mv rockchip-iqfiles/* etc/iqfiles/
mv etc rockchip-iqfiles/
ls -a
echo "testing"
ls -a rockchip-iqfiles/
sudo gem install fpm
fpm -a arm64 -s dir -t deb -n rockchip-iq-openhd-r3 -v 0.2 -C rockchip-iqfiles -p rockchip-iq-openhd-r3_VERSION_ARCH.deb
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}
path: |
*.deb
- name: Push
id: push
uses: cloudsmith-io/action@master
with:
api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
command: "push"
format: "deb"
owner: "openhd"
repo: "release"
distro: "debian"
release: "bullseye"
republish: "true" # needed ONLY if version is not changing
file: "*.deb"

0 comments on commit a307bc8

Please sign in to comment.