Merge pull request #16 from OpenHD/arm32_debug_fix #81
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: autoinstaller | |
on: [push] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: install dependencies | |
run: | | |
sudo apt install -y ruby-dev | |
sudo gem install fpm | |
- name: create installer | |
run: | | |
mkdir ../temp | |
mkdir ../temp2 | |
cp -r packagedir/* ../temp2 | |
rm -Rf packagedir | |
mv * ../temp | |
mkdir -p packagedir/opt/rtl8812au/ | |
mv ../temp/* packagedir/opt/rtl8812au | |
mv ../temp2/* packagedir/ | |
fpm -a arm64 -s dir -t deb -n rtl8812au-autocompiler -v 2.3.4-$(date '+%m%d%H%M') -C ./packagedir/ -p rtl8812au-autocompiler.deb --after-install packagedir/opt/rtl8812au/after-install.sh | |
ls -a | |
- name: Upload to Github | |
uses: 'actions/upload-artifact@v2' | |
with: | |
name: "rtl8812au-autocompiler" | |
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: "openhd-2-3-evo" | |
distro: "any-distro" | |
release: "any-version" | |
republish: "true" # needed ONLY if version is not changing | |
file: "*.deb" |