Compare commits

..

2 Commits

Author SHA1 Message Date
6f0d10c99e feat: add build workflows
All checks were successful
Build / build (pull_request) Successful in 33s
- enable fetch-depth for code_checkout
- fetch master branch before checking for changed files
- ensure the clean target is called with the default
2025-01-25 17:08:47 +11:00
d936a21108 feat: remove incus from builds file
- this will prevent incus images from building
- pending physical build nodes before enabling deployment of incus images
2025-01-25 17:08:30 +11:00
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,10 @@ jobs:
with:
fetch-depth: 0
- name: Fetch master branch
run: |
git fetch origin master:master
- name: Show changed files
run: |
git diff --name-only master

View File

@ -25,6 +25,10 @@ jobs:
with:
fetch-depth: 0
- name: Fetch master branch
run: |
git fetch origin master:master
- name: Run Packer Builds
env:
VAULT_ROLEID: ${{ secrets.PACKER_BUILDER_VAULT_ROLEID }}