From 5430cf9a8582a8b18783ab9786d75c45969b2c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Fri, 24 May 2024 16:32:01 +0200 Subject: [PATCH] Added GitHub Action for submitting the agama-auto package --- .../obs-staging-autoinstallation.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/obs-staging-autoinstallation.yml diff --git a/.github/workflows/obs-staging-autoinstallation.yml b/.github/workflows/obs-staging-autoinstallation.yml new file mode 100644 index 0000000000..e43c9ba155 --- /dev/null +++ b/.github/workflows/obs-staging-autoinstallation.yml @@ -0,0 +1,24 @@ +name: Submit agama-auto + +on: + # runs on pushes targeting the default branch + push: + branches: + - master + paths: + # run only when an autoinstallation source is changed + - autoinstallation/** + # except the Markdown documentation, it is not packaged + - "!autoinstallation/README.md" + + # allow running manually + workflow_dispatch: + +jobs: + update_staging: + uses: ./.github/workflows/obs-staging-shared.yml + # pass all secrets + secrets: inherit + with: + package_name: agama-auto + service_file: autoinstallation/package/_service