From 986ffcbfc453fbb1fbefccbbb948330d02364197 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet <105649352+lbajolet-hashicorp@users.noreply.github.com> Date: Fri, 26 May 2023 14:48:22 -0400 Subject: [PATCH] github: remove test-plugin-example workflow (#73) --- .github/workflows/test-plugin-example.yml | 47 ----------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/test-plugin-example.yml diff --git a/.github/workflows/test-plugin-example.yml b/.github/workflows/test-plugin-example.yml deleted file mode 100644 index 2f0eae1..0000000 --- a/.github/workflows/test-plugin-example.yml +++ /dev/null @@ -1,47 +0,0 @@ -# This is a manually triggered action workflow. -# It uses Packer at latest version to init, validate and build -# an example configuration in a folder. -# This action is compatible with Packer v1.7.0 or later. -name: test plugin example - -on: - workflow_dispatch: - inputs: - logs: - description: 'Set 1 to activate full logs' - required: false - default: '0' - folder: - description: 'Example folder' - required: false - default: './example' - -jobs: - build: - runs-on: ubuntu-latest - name: init and build example - steps: - - name: Checkout Repository - uses: actions/checkout@v2 - - - name: Init - uses: hashicorp/packer-github-actions@master - with: - working_directory: ${{ github.event.inputs.folder }} - command: init - - - name: Validate - uses: hashicorp/packer-github-actions@master - with: - working_directory: ${{ github.event.inputs.folder }} - command: validate - env: - PACKER_LOG: ${{ github.event.inputs.logs }} - - - name: Build - uses: hashicorp/packer-github-actions@master - with: - working_directory: ${{ github.event.inputs.folder }} - command: build - env: - PACKER_LOG: ${{ github.event.inputs.logs }} \ No newline at end of file