All checks were successful
Deploy / build (push) Successful in 12s
- update the images used in gitea workflows Reviewed-on: #21
32 lines
614 B
YAML
32 lines
614 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: almalinux-8
|
|
container:
|
|
image: git.unkin.net/unkin/almalinux9-actionsdind:latest
|
|
options: --privileged
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Fetch master branch
|
|
run: |
|
|
git fetch origin master:master
|
|
|
|
- name: Show changed files
|
|
run: |
|
|
git diff --name-only master
|
|
|
|
- name: Run Packer Builds
|
|
env:
|
|
VAULT_ROLEID: ${{ secrets.PACKER_BUILDER_VAULT_ROLEID }}
|
|
run: |
|
|
make
|