postfwd/.github/workflows/packaging_test.yml

37 lines
767 B
YAML
Raw Normal View History

2020-12-27 22:40:54 +00:00
name: Packaging Test
on:
push:
branches:
- $default-branch
- development
- master
# Run tests for any PRs
pull_request:
env:
SOURCE_DIR: ./
ARTIFACTS_DIR: debian/build/release/
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2020-12-27 22:40:54 +00:00
env:
DEBIAN_FRONTEND: "noninteractive"
2022-10-20 10:56:58 +00:00
- name: Remove github artefacts
run: |
rm -rf .github*
2020-12-27 22:40:54 +00:00
- name: Adjust distibution in changelog file
run: |
sed -i '0,/restricted/s//stable/' debian/changelog
- name: Build Debian package
uses: dawidd6/action-debian-package@v1.5.0
2020-12-27 22:40:54 +00:00
with:
artifacts_directory: debian/build/release/
2022-10-20 10:56:58 +00:00
os_distribution: testing
2020-12-27 22:40:54 +00:00
- name: Debug
run: |
ls -la