feat: move the common variables into a separate file #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check ORKA Packer Templates | |
on: | |
push: | |
paths: | |
- 'orka/**/*.pkr.hcl' | |
pull_request: | |
paths: | |
- 'orka/**/*.pkr.hcl' | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
- name: Set up Packer | |
uses: hashicorp/setup-packer@1aa358be5cf73883762b302a3a03abd66e75b232 #v3.1.0 | |
- name: Initialize Packer | |
run: packer init . | |
working-directory: orka/templates | |
- name: Validate Packer templates | |
env: | |
ORKA_ENDPOINT: 'https://mock-orka-endpoint' | |
ORKA_AUTH_TOKEN: 'mock-orka-auth-token' | |
SSH_DEFAULT_USERNAME: 'mock-ssh-default-username' | |
SSH_DEFAULT_PASSWORD: 'mock-ssh-default-password' | |
SSH_TEST_PASSWORD: 'mock-ssh-test-password' | |
SSH_TEST_PUBLIC_KEY: 'mock-ssh-test-public-key' | |
run: | | |
packer validate -var "orka_endpoint=$ORKA_ENDPOINT" \ | |
-var "orka_auth_token=$ORKA_AUTH_TOKEN" \ | |
-var "ssh_default_username=$SSH_DEFAULT_USERNAME" \ | |
-var "ssh_default_password=$SSH_DEFAULT_PASSWORD" \ | |
-var "ssh_test_public_key=$SSH_TEST_PASSWORD" \ | |
-var "ssh_userssh_test_passwordname=$SSH_TEST_PUBLIC_KEY" . | |
working-directory: orka/templates |