mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-06 06:57:03 -05: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>
42 lines
988 B
YAML
42 lines
988 B
YAML
name: Create packages
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
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/master/mini-dinstall/incoming/
|