mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-12 19:08:00 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
971 B
YAML
40 lines
971 B
YAML
name: Create Debian Release Packages
|
|
|
|
on:
|
|
release:
|
|
types: [ published ]
|
|
|
|
jobs:
|
|
package:
|
|
strategy:
|
|
matrix:
|
|
os_dist:
|
|
- os: debian
|
|
dist: buster
|
|
- os: debian
|
|
dist: bullseye
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: '0'
|
|
submodules: recursive
|
|
- name: Run packpack
|
|
env:
|
|
SMPFLAGS: -j4
|
|
OS: ${{ matrix.os_dist.os }}
|
|
DIST: ${{ matrix.os_dist.dist }}
|
|
DOCKER_REPO: iconzm/packpack
|
|
run: utils/packpack/startpackpack.sh
|
|
|
|
- name: Publish
|
|
uses: easingthemes/ssh-deploy@main
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.ZMREPO_SSH_KEY }}
|
|
ARGS: "-rltgoDzvO"
|
|
SOURCE: build/
|
|
REMOTE_HOST: ${{ secrets.ZMREPO_HOST }}
|
|
REMOTE_USER: ${{ secrets.ZMREPO_SSH_USER }}
|
|
TARGET: debian/release-1.36/mini-dinstall/incoming/
|