All checks were successful
Build / build (pull_request) Successful in 3s
- update the images used in gitea workflows
28 lines
566 B
YAML
28 lines
566 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
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: Run Packer Builds
|
|
env:
|
|
VAULT_ROLEID: ${{ secrets.PACKER_BUILDER_VAULT_ROLEID }}
|
|
DOCKER_USERNAME: ${{ secrets.UPLOAD_USER }}
|
|
DOCKER_PASSWORD: ${{ secrets.UPLOAD_PASS }}
|
|
run: |
|
|
make
|