-
Notifications
You must be signed in to change notification settings - Fork 19
47 lines (42 loc) · 1.27 KB
/
test-plugin-example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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@v4
- 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 }}