From 254f6bf9cfda670deb5053fa457cb386cbe8edc3 Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Tue, 24 Oct 2023 10:37:45 +0200 Subject: [PATCH] Add placeholder pkg.yml --- .github/workflows/pkg.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/pkg.yml diff --git a/.github/workflows/pkg.yml b/.github/workflows/pkg.yml new file mode 100644 index 00000000..e4daa5a3 --- /dev/null +++ b/.github/workflows/pkg.yml @@ -0,0 +1,20 @@ +name: Packaging + +on: + push: + branches: + - main + tags: + - v* + + # Triggering on PRs and arbitrary branch pushes is not enabled because most of the time only the CI build should be + # triggered, not the packaging build. In cases where you want to test changes to this workflow this trigger enables + # you to manually invoke this workflow on an arbitrary branch as needed. + workflow_dispatch: + +jobs: + full: + uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7 + + # Placeholder configuration to make the workflow appear in GitHub Actions until the real workflow is merged to + # the main branch.