From a6e9229677f14524b0920959a9340de661b486f0 Mon Sep 17 00:00:00 2001 From: Kevin Scott Adams Date: Fri, 28 Aug 2020 15:22:01 -0400 Subject: [PATCH] New build process - Testing the github actions to build the debian package. --- .github/workflows/action.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..9bed970 --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,17 @@ +name: Dispatch build of the freenas-proxmox plugin package + +on: + push: + +jobs: + dispatch: + name: Dispatch to build the package + runs-on: ubuntu-latest + steps: + - name: Send dispatch request to 'freenas-proxmox-packer' repo. + uses: peter-evans/repository-dispatch@v1 + with: + token: ${{ secrets.ACCESS_TOKEN }} + repository: TheGrandWazoo/freenas-proxmox-packer + event-type: build_push + client-payload: '{"ref" : "${{ github.ref }}", "sha": "${{ github.sha }}"}'